setting the yticklabels with $10^{-2}$ appearing at the top
6 views (last 30 days)
Show older comments
I want the y axis to be labelled as
But I actually got
The problem is that the ticklabels are too wide. How can I make it appprear as I desire?
0 Comments
Accepted Answer
Lone_wolf
on 14 Jun 2024
FYI
x = linspace(0,5,100);
y1 = 1e5*x;
y2 = 1e-5*x.*sin(20*x);
figure
yyaxis left
plot(x,y1)
yyaxis right
plot(x,y2)
ax = gca;
ax.YAxis(1,1).Exponent = 5;
ax.YAxis(2,1).Exponent = -5;
0 Comments
More Answers (0)
See Also
Categories
Find more on Axis Labels 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!