Trouble reading data from .mat file
4 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to read data in .mat file but data is displaying in corrupted format. Version I'm using is 2015rb.
4 件のコメント
Geoff Hayes
2019 年 11 月 29 日
But what do you mean by values are not showing. Is the 1.mat file invalid?
回答 (1 件)
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 件のコメント
Luna
2019 年 11 月 29 日
can you share the code shows how it is saved? We should know the saving method I guess.
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!