Change colorbar title position latex

25 ビュー (過去 30 日間)
Turbulence Analysis
Turbulence Analysis 2020 年 10 月 19 日
コメント済み: Turbulence Analysis 2020 年 10 月 20 日
Hi,
In the attached figure, I would like to reposition the colorbar axis title to be along with colorbar. May I know how to change the psotion.
set(c,'String',['$','\omega','(1/s)','$'],'Interpreter','latex','fontsize',18);

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 19 日
Try something like this
c = colorbar;
c.Title.String = '$\omega(1/s)$';
c.Title.Interpreter = 'latex';
c.Title.FontSize = 16;
c.Title.Units = 'data';
c.Title.Position(1:2) = [3.5 mean(c.Limits)]; % adjust value of 3.5 until you get correct horizontal position
  10 件のコメント
Turbulence Analysis
Turbulence Analysis 2020 年 10 月 20 日
Sorry,, Here is the attachment..
Turbulence Analysis
Turbulence Analysis 2020 年 10 月 20 日
I sorted the issue. The caxis ([-0.02 0.02]); which is defined just after the c.Title.Rotation = 90; causes the problem, I have moved this to the top just after the imagesc(x,y,(New3));.
Hence, now the position of colorbar title is remains unaltered across all the images in for loop.
Thanks....

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by