Info
この質問は閉じられています。 編集または回答するには再度開いてください。
help with mat file
1 回表示 (過去 30 日間)
古いコメントを表示
When I load a mat file by giving its full path like this
load ('E:\Mathematical modellling\assignment1\april6\spectral_3.mat');
whos -file 'E:\Mathematical modellling\assignment1\april6\spectral_3.mat'
I find that the type is double
but when I try to open it like
y=load ('spectral_3.mat');
whos -file 'spectral_3.mat'
then i find that the type is struct How can i fix it
Actually I want to send the mat file with the assignment.
2 件のコメント
Walter Roberson
2018 年 4 月 9 日
In particular y will be a struct with one field for each variable stored in the file.
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!