Y軸のラベルの指数表​示を数値で表示するに​はどうすればよいです​か?

53 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2010 年 6 月 18 日
編集済み: MathWorks Support Team 2018 年 5 月 17 日
次のコマンドを実行すると、Y軸のラベルが1, 2, 3 e+4の形式で表示されますが、オリジナルデータ(10000, 20000, 30000)の形式で表示する方法を教えてください。
x = [1 2 3];
y = [10000 20000 30000];
plot(x,y)

採用された回答

MathWorks Support Team
MathWorks Support Team 2018 年 5 月 17 日
'YTickLabel'の再設定を行うことで、指数表示を実数表示へ変更できます。
x = [1 2 3];
y = [10000 20000 30000];
plot(x,y)
set(gca,'yticklabel',num2str(get(gca,'ytick')','%d'))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGrid Lines, Tick Values, and Labels についてさらに検索

製品


リリース

R2007a

Community Treasure Hunt

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

Start Hunting!