How to show all decimals in axis?

2 ビュー (過去 30 日間)
Philippe Corner
Philippe Corner 2018 年 8 月 3 日
コメント済み: Walter Roberson 2023 年 4 月 28 日
By default, the axis in matlab plots show the number of decimals simplified by x10^#, how could we obtain this values in axes changing:
from 6.5 x10^5 to 650000?
I have seen that this code:
ax.YAxis.TickLabelFormat = '%.5f';
makes this
6.5 x10^5 to 6.50000 x10^5,
but im looking to delete "x10^5" abbreviation.
Thanks in advance

採用された回答

Adam
Adam 2018 年 8 月 3 日
ax.YAxis.Exponent = 0;
should do this if you have a sufficiently recent version of Matlab.
  4 件のコメント
Leslie
Leslie 2023 年 4 月 28 日
R2021b
Walter Roberson
Walter Roberson 2023 年 4 月 28 日
I do not happen to have R2021b installed at the moment. The behaviour I see in R2021a and R2022a is the same as what is shown here:
y = rand(1,20) * 1000000;
ax = subplot(2,1,1);
plot(ax, y);
title('not changing exponent')
ax = subplot(2,1,2);
plot(ax, y);
ax.YAxis.Exponent = 0;
title('changed exponent')

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by