How to save figures in .eps format with larger font sizes on title and x and y label ?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to save figures in .eps format with larger font sizes on title and x and y label ?
0 commentaires
Réponse acceptée
the cyclist
le 10 Juin 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')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!