フィルターのクリア

How cans adjust to the subplot title font size?

41 ビュー (過去 30 日間)
Steven KIM
Steven KIM 2021 年 11 月 23 日
コメント済み: Steven KIM 2021 年 11 月 24 日
Hello, everyone.
I want to grow Hs=1.5m, Tp=9sec font size in the subplot and reduce the sway font size separately, how can I modify the code?
Help me, please.
title('Sway')
[t,s]=title('H_s=1.5m, T_p=9sec','Sway', 15);
legend = gca;
legend.FontSize = 14;
Even if the font size is increased, the axis font size is also large.
I want to change only Title.

採用された回答

Walter Roberson
Walter Roberson 2021 年 11 月 23 日
[t,s]=title('H_s=1.5m, T_p=9sec','Sway', 'fontsize', 15);
s.FontSize = 9;
Or... use subtitle()
  3 件のコメント
Adam Danz
Adam Danz 2021 年 11 月 24 日
If you're using R2020b or later, also see subtitle
subtitle('My Subtitle','FontSize',12)
Steven KIM
Steven KIM 2021 年 11 月 24 日
oh,, i got it :)
Thank you so much !

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTitle についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by