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

조회 수: 2 (최근 30일)
rather than having 3e+04 how to get 30000

답변 (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(:))));

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by