setting the yticklabels with $10^{-2}$ appearing at the top
6 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!