How to save figures in .eps format with larger font sizes on title and x and y label ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Akkineni
am 10 Jun. 2014
Kommentiert: Akkineni
am 10 Jun. 2014
How to save figures in .eps format with larger font sizes on title and x and y label ?
0 Kommentare
Akzeptierte Antwort
the cyclist
am 10 Jun. 2014
One of several possible ways to do this:
figure
plot(rand(3),rand(3))
title('Title','FontSize',14)
xlabel('X label','FontSize',16)
ylabel('Y label','FontSize',18)
print('-deps','filename.eps')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!