How can I save multiple plots in a specified folder?
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 .
Antworten (1)
monika shivhare
am 4 Jun. 2018
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 Kommentar
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!