How to save figures while specifying the saving location, extension and resolution?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Yasmin Samy
am 11 Okt. 2018
Kommentiert: Yasmin Samy
am 11 Okt. 2018
Hello, below is the saving section of my code which works fine. However i would like to get figures saved with a higher resolution (any other suggestions are welcome). Adding -r600 (whats the maximum), for example, after the extension doesn`t work. Can someone let me know how to go about it? thanks
FolderName = ('C:\Users\Desktop');
windowname2=strcat(stn,'- stdseasonal');
set(fig2,'Name',windowname2,'NumberTitle','off');
saveas(fig2,fullfile(FolderName,windowname2),'png');
0 Kommentare
Akzeptierte Antwort
OCDER
am 11 Okt. 2018
print(fig2, fullfile(FolderName, windowname2), '-dpng', '-r600')
Use print instead of savefig to save a figure to a specific format and resolution. Read:
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Printing and Saving 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!