How to save figures in .eps format with larger font sizes on title and x and y label ?

3 visualizaciones (últimos 30 días)
How to save figures in .eps format with larger font sizes on title and x and y label ?

Respuesta aceptada

the cyclist
the cyclist el 10 de Jun. de 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')

Más respuestas (0)

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by