Saving the command window to file
조회 수: 11 (최근 30일)
이전 댓글 표시
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
채택된 답변
Star Strider
2015년 8월 30일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!