setting the yticklabels with $10^{-2}$ appearing at the top

조회 수: 7 (최근 30일)
min lee
min lee 2024년 6월 14일
답변: Lone_wolf 2024년 6월 14일
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?

채택된 답변

Lone_wolf
Lone_wolf 2024년 6월 14일
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개)

카테고리

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

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by