how to read data from a .mat file
古いコメントを表示
Hi: I have a .mat file named Ey1a which I need to use it in my code as one of the inputs. The file contains complex data (real and imaginary).I read the file like this:
dlmread Ey1a.mat
but I had this error:
Mismatch between file and format string.
Trouble reading number from file (row 1, field 1) ==> MATLA
Error in ==> fiber_commentedoriginal at 38 dlmread Ey1a.mat;
also, I need to use the conjugate of Ey1a in my code, so how to do this as I can not load the Ey1a.mat file itself
採用された回答
その他の回答 (4 件)
James Tursa
2015 年 4 月 1 日
編集済み: James Tursa
2015 年 4 月 1 日
Use the load function to read .mat files. E.g.,
load Ey1a.mat
4 件のコメント
Naema
2015 年 4 月 1 日
per isakson
2015 年 4 月 1 日
編集済み: per isakson
2015 年 4 月 1 日
What does
whos -file Ey1a.mat
show?
Naema
2015 年 4 月 1 日
Vinod Sudheesh
2015 年 4 月 1 日
1 投票
You could use the "load" command to read data stored in a MAT file.
>> load Ey1a.mat
The "dlmread" function is used for reading ASCII delimited file.
LUI PAUL
2015 年 4 月 1 日
0 投票
for other directory.....
load('D:\data_file\Eyla.mat')
for current directory load('Eyla.mat');
or follow the figure....

LUI PAUL
2015 年 4 月 1 日
0 投票
to get conjugate
load('Eyla.mat');
Eyla=conj(Eyla);
カテゴリ
ヘルプ センター および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!