Matlab: change position of ylabel

424 ビュー (過去 30 日間)
Yoni Verhaegen -WE-1718-
Yoni Verhaegen -WE-1718- 2020 年 5 月 15 日
コメント済み: Walter Roberson 2022 年 10 月 8 日
I was wondering if it is possible to change the position of the ylabel. I would like to move it down (as suggested on the attached figure) to match it better with the yticks.

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 5 月 15 日
編集済み: Ameer Hamza 2020 年 5 月 15 日
If you have the handle of ylabel, then you can modify its position using the 'position' property. For example
label_h = ylabel('myLabel');
label_h.Position(1) = 2040; % change horizontal position of ylabel
label_h.Position(2) = 0; % change vertical position of ylabel
Experiment with these values until you get the required location.
  2 件のコメント
Utkarsh
Utkarsh 2022 年 10 月 8 日
what about roation of ylabel?
Walter Roberson
Walter Roberson 2022 年 10 月 8 日
You can use ytickangle
Recent versions of MATLAB automatically rotate the angle for clarity.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by