グラフのy軸の目盛りラベルにて、整数部の表示桁数を指定する方法について
19 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
下記のようなグラフを表示するコードで、大きな整数値だと指数表示になって細かい値が見れなくなってしまいます。
「1x10^5」のように指数表示せず、「100001 100002 100003 100004 100005」という値をそのまま縦軸に表示する方法を知りたいです。
小数部の精度はytickformat関数で指定できますが、整数部の表示桁数を指定する方法などはあるのでしょうか。
x = 1:5;
y = [100001 100002 100003 100004 100005];
plot(x, y);
ytickformat('%d');

0 Commenti
Risposta accettata
Dyuman Joshi
il 15 Nov 2023
Modificato: Dyuman Joshi
il 15 Nov 2023
The ticklabels are stored as the mantissa and the exponent is stored as the property of the corresponding axis (see below).
So, changing the tick format only changes the values of the mantissa.
Solution - Change the exponent of the y-axis to 0
x = 1:5;
y = [100001 100002 100003 100004 100005];
labels = yticklabels
plot(x, y)
ax = gca;
ax.YAxis.Exponent = 0;
%Check labels after modification
labels = yticklabels
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Pie Charts in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
