How to view saved matlab .fig file?
조회 수: 19 (최근 30일)
이전 댓글 표시
I have a program using the following code which procedurally saves .fig files to folders on my network drive?
figs_created = setdiff(figs_after, figs_before);
for j = 1 : length(figs_created)
savefile = fullfile(completed_filepath, baseFileName + " " + "Figure " + j + ".pdf");
saveas(figs_created(j), savefile);
matfile = fullfile(completed_filepath, baseFileName + " " + "Figure " + j + ".fig");
saveas(figs_created(j), matfile);
end
close(figs_created)
How to i open these figures once the program is completed?
I can see the figures saved in file explorer, but after double clicking or pressing 'open' nothing happens, how can i view these figures?
댓글 수: 0
답변 (1개)
참고 항목
카테고리
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!