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 ?
0 件のコメント
採用された回答
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 Exchange で Interactive Control and Callbacks についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!