How to save result images?
조회 수: 1 (최근 30일)
이전 댓글 표시
I need to write the output figures in seperate folder........can anyone please help me...?
댓글 수: 0
채택된 답변
Walter Roberson
2019년 10월 1일
output_folder = 'C:\Users\Sajina\Documents\MATLAB\Project9\outputs';
outfile = fullfile(output_folder, 'fig1.png');
saveas(gcf, outfile);
the file will be written into the named directory.
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!