how to open a.mat file in matlab command window
39 ビュー (過去 30 日間)
古いコメントを表示
how to open a.mat file in command window in matlab
2 件のコメント
Jan
2017 年 6 月 25 日
@naval solanki: Please do not only state "not working", but explain any details. Did you switch on the computer? Is Matlab installed? Which version? With which version has the MAT file been created? Does the selected file exist? Do you get an error message or do the results differ from your expectations? We cannot (or should not) guess the details.
回答 (1 件)
Star Strider
2017 年 6 月 25 日
‘load a.mat not working’
It probably is. You should see the variables that are in the ‘.mat’ file in your Workspace browser.
It is always best to use load as a function and with an output argument, so you can see the variables in the file, and assign them as necessary.
Example —
D = load('a.mat')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Search Path についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!