How can I change my bode plot font size from Matlab's command?
23 ビュー (過去 30 日間)
古いコメントを表示
Hi All
I think that it may be a simple question, but I am grateful if somebody can help me. I have a fig file of bode plot. It is from a 2 inputs and 2 outputs system. How can I change the font size of x label (frequency) and y label (magnitude & angle) from command line?
Thank you
0 件のコメント
採用された回答
Birdman
2017 年 10 月 24 日
Write ('name of axis','FontSize',value of font size,'FontWeight', bold or normal)
Example:
xlabel('Frequency','FontSize',20,'FontWeight','bold')
2 件のコメント
Birdman
2017 年 10 月 24 日
For already saved figures, do the following:
a=openfig(' _name of the figure_');
aChildren=a.Children;
Then, open the aChildren 2x1 Axes and you will find the FontSize properties. You can manually change them.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with Control System Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!