How to save result images?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sajina Rose
am 1 Okt. 2019
Beantwortet: Walter Roberson
am 1 Okt. 2019
I need to write the output figures in seperate folder........can anyone please help me...?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 1 Okt. 2019
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu File Operations 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!