semilogy tick marker is missing

4 ビュー (過去 30 日間)
Rui
Rui 2013 年 7 月 14 日
Hi everyone,
Markers at Y lower limits are missing.
How can I fix that? Thanks!
Rui
  1 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 7 月 14 日
What is missing?

サインインしてコメントする。

採用された回答

dpb
dpb 2013 年 7 月 14 日
Don't set the lower limit to 0.2 as it appears you have, leave it at 0.1
IOW, use
ylim([0.1 20])
instead of the
ylim([0.2 20])
you appear to have done based on the plot image
  3 件のコメント
dpb
dpb 2013 年 7 月 14 日
編集済み: dpb 2013 年 7 月 14 日
Or, if you can stand to not have the exponent, you can set the ytick values manually...try the following to see how handle graphics deals w/ the log axis tick labels--
semilogy([0 6], [15 .1])
ylim([0.2 20])
get(gca,'ytick')
get(gca,'yticklab')
set(gca,'ytick',[.2 1 10])
set(gca,'ytick',[ 1 10])
Salt to suit...
Rui
Rui 2013 年 7 月 14 日
Thanks again!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by