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

1 回表示 (過去 30 日間)
How to save figures in .eps format with larger font sizes on title and x and y label ?

採用された回答

the cyclist
the cyclist 2014 年 6 月 10 日
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')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by