how can i adjust y-axis scale of 'semilogy' function

77 ビュー (過去 30 日間)
JaeSung Choi
JaeSung Choi 2018 年 3 月 30 日
回答済み: Prasanth Sunkara 2018 年 4 月 2 日
I want to set y scale from 10^(-2) to 10^7 following problem.
x = 0:0.1:10;
y = exp(x);
figure
semilogy(x,y)
But as you can see this shows only from 10^0 to 10^5 for y-axis. How can i change this?

採用された回答

Prasanth Sunkara
Prasanth Sunkara 2018 年 4 月 2 日
By default, plot (or any other plotting command) adjusts the y-axis limits to fit the data "compactly". However, you can override this behavior, and adjust the limits using ylim command.
In your example, we can add the following command to fit the y-limits.
ylim([10^(-2) 10^7])
Hope this helps!
Thanks,
Prasanth

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange그래픽스 객체 프로그래밍 についてさらに検索

Community Treasure Hunt

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

Start Hunting!