Filter löschen
Filter löschen

Issue when removing scientific notation in Matlab plot

1 Ansicht (letzte 30 Tage)
NC
NC am 4 Mai 2016
Kommentiert: Nikhil Sreekumar am 11 Aug. 2016
I am trying to configure the yticklabels to appear on the graph in a non scientific notation format. My original plot looks like:
In order to remove the scientific notation, I have tried:
set(gca,'YTickLabel',num2str(get(gca,'YTick').'))
and I get the following result:
As it can be seen here, this does not make any sense as the y axis values should increase.
I also tried the following code:
yt=get(gca,'YTick');
set(gca,'YTickLabel',sprintf('%.1f\n',yt))
and I get the following result:
As it can be seen, this does not make sense either. The top label is missing.
I cannot find the way to get it right. Any help would be appreciated.
  1 Kommentar
Nikhil Sreekumar
Nikhil Sreekumar am 11 Aug. 2016
Which version of MATLAB are you using and can you attach the data used?

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by