Trouble reading data from .mat file

조회 수: 10 (최근 30일)
Zarish Anwar
Zarish Anwar 2019년 11월 28일
댓글: Geoff Hayes 2019년 11월 29일
I'm trying to read data in .mat file but data is displaying in corrupted format. Version I'm using is 2015rb.
  댓글 수: 4
Zarish Anwar
Zarish Anwar 2019년 11월 28일
@Geoff Hayes
i'm computing sift descriptor values over my dataset. The code works fine and .mat file is being created for each image but values are not showing I'm getting this file as output
Geoff Hayes
Geoff Hayes 2019년 11월 29일
But what do you mean by values are not showing. Is the 1.mat file invalid?

댓글을 달려면 로그인하십시오.

답변 (1개)

Luna
Luna 2019년 11월 28일
Hi,
Try this:
fid = fopen('1.mat');
values = fread(fid);
fclose(fid);
It seems only file created
'MATLAB 5.0 MAT-file, Platform: PCWIN64, Created on: Thu Jan 01 02:47:51 2015'
The rest of data can not be seen.
  댓글 수: 2
Zarish Anwar
Zarish Anwar 2019년 11월 28일
@Luna
I'm able to read the data, my 1st coloumn is providing me values. But I have a large dataset and for each img a seperate mat file have to be created. And have to be save in a directory,
But problem is whenever I save file it is not showing data/values.
Luna
Luna 2019년 11월 29일
can you share the code shows how it is saved? We should know the saving method I guess.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Modeling and Prediction에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by