How to save MAtlab output in a file that you can reopen later?
42 ビュー (過去 30 日間)
古いコメントを表示
I have some results in Matlab which are mainly cell arrays and numbers. I want to save these results(either in a .txt file or anywhere else) so that I can use them later to make a table, draw a graph, etc...
What is the best way to do that?
0 件のコメント
採用された回答
Matt Kindig
2013 年 1 月 23 日
編集済み: Matt Kindig
2013 年 1 月 23 日
Save your workspace as a *.mat file is easiest. You can use File->Save Workspace As from the menu or using the 'save' command.
doc save
Then to retrieve the results, use File->Open or the 'load' command
doc load
その他の回答 (0 件)
参考
カテゴリ
Help Center および 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!