How can I save multiple plots in a specified folder?
이전 댓글 표시
I have drawn major and minor axis over several binary images using a for loop. Now I want to save all these figures in a specified folder and want to off their visibility to the screen .
댓글 수: 1
답변 (1개)
monika shivhare
2018년 6월 4일
To off visibility of figures on screen
set(0,'DefaultFigureVisible','off')
To save all figures in specified folder,
path='D:\figures\';
saveas(figure(i),fullfile(path,['myPlot' num2str(i) '.jpeg']));
save to a folder to save your files ion specified folder.
댓글 수: 1
Harr
2021년 4월 9일
Thanmks Monika! I had similar problem.
카테고리
도움말 센터 및 File Exchange에서 Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!