Problem with subplot size and annotation of each plot

4 ビュー (過去 30 日間)
BN
BN 2020 年 4 月 4 日
コメント済み: Fego Etese 2020 年 4 月 6 日
Hey all,
I read the documentation very carefully and make this subplot, however, you can see it is very messed up. I have annotation (textbox) on each plot but after subplot, all of them show on each other.
Here is my subplot: ( You can see just 1 annotation showing and size of plots are very bad
I wish I can correct it so it is something like this figure below. Please tell me what option I have to make it right.
Thank you

採用された回答

Image Analyst
Image Analyst 2020 年 4 月 4 日
Use xlabel() and ylabel() with a small enough font size instead of annotation() or text():
fontSize = 8;
xlabel('Observed Preciptation [mm]', 'FontSize', fontSize);
ylabel('Whatever you want', 'FontSize', fontSize);
  11 件のコメント
BN
BN 2020 年 4 月 6 日
Thank you ?
Fego Etese
Fego Etese 2020 年 4 月 6 日
Hey, Image Analyst please I need your help again. I have this question and i will be grateful if you can help me out
Thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by