semilogy tick marker is missing

Hi everyone,
Markers at Y lower limits are missing.
How can I fix that? Thanks!
Rui

 Akzeptierte Antwort

dpb
dpb am 14 Jul. 2013

0 Stimmen

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 Kommentare

Rui
Rui am 14 Jul. 2013
Hi dpb, thanks a lot! You are right. My tick limit is a little smaller than my plot limit...
dpb
dpb am 14 Jul. 2013
Bearbeitet: dpb am 14 Jul. 2013
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 am 14 Jul. 2013
Thanks again!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Axes Appearance finden Sie in Hilfe-Center und File Exchange

Gefragt:

Rui
am 14 Jul. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by