Hiding exponent labels without scientific notation

5 views (last 30 days)
So basically I have data in the form of linear models and am plotting it in a bunch of subplots. I cant seem to edit the x and y data (apparently the variables for the class are read-only) but I need to make x ticks more ledgible (i.e. have smaller numbers). To do this I've set the axis to use scientific notation with:
ax = gca;
ax.XAxis.Exponent = 3;
And then manually set the ticks with xticks() for each subplot.
The Problem now Is that the x10^3 label is making the graph messy but I can't figure out any way to get rid of it while keeping my xticks as I have them. Does anyone know if there is a way to do this?

Accepted Answer

Voss
Voss on 18 Jan 2023
Set the xticklabels when you set the xticks.
  2 Comments
Toby Beisly
Toby Beisly on 18 Jan 2023
Edited: Toby Beisly on 18 Jan 2023
That's worked perfectly, thanks a lot for that, I wasn't aware xticklabels was a thing, you've saved me a lot of frustration :D.

Sign in to comment.

More Answers (0)

Categories

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

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!