Saving the command window to file
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
BH
am 30 Aug. 2015
Beantwortet: Star Strider
am 30 Aug. 2015
I have written a script that runs a few calculations and displays some results in the command window, mostly by using the disp function but also partly by using the fprintf function. It would be better if I could save all these results to a file (ideally pdf or something that could be converted to pdf). Is there a simple way to modify my script to do this? I have 2 figures that this script plots that I would like to keep separate.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 30 Aug. 2015
I would use fprintf for everything, remembering that the first argument can be a fileID created by fopen. It is likely not difficult to write fprintf calls to emulate your disp calls. You can then save all your results to that file.
As for the figures, you can use the print, saveas, or savefig functions to save them. (The savefig function is likely the best, because it also retains the data and other information used to create it. You can create images from it later as necessary.)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!