y axis value representation on figure

2 views (last 30 days)
Askic V
Askic V on 6 May 2022
Commented: Voss on 9 May 2022
Hello,
is there any way to force Matlab to use 35000 instead of 3.5 x 10^4 on y axis usig plot command?
My plot command creates figure that has x10^N on y axis just like shown in the attached picture.

Accepted Answer

Voss
Voss on 6 May 2022
Edited: Voss on 7 May 2022
yyaxis left
plot(0:1000:50000)
yyaxis right
plot(400000000:-10000000:0)
set(get(gca(),'YAxis'),'Exponent',0,'TickLabelFormat','%.0f')
  4 Comments
Askic V
Askic V on 8 May 2022
Thank you very much!. It's very helpful.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!