how to turn off scientific notations in figure ??? likein mine i'm getting 3+e02 i want it 300 only

回答 (1 件)

Joep
Joep 2015 年 7 月 3 日
編集済み: Joep 2015 年 7 月 3 日
try this:
for X-label
curtick = get(gca, 'XTick');
set(gca, 'XTickLabel', cellstr(num2str(curtick(:))));
for Y-label
curtick = get(gca, 'YTick');
set(gca, 'YTickLabel', cellstr(num2str(curtick(:))));

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2015 年 7 月 3 日

編集済み:

2015 年 7 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by