How to save MAtlab output in a file that you can reopen later?
41 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Matt Kindig
am 23 Jan. 2013
Bearbeitet: Matt Kindig
am 23 Jan. 2013
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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!