semilogy tick marker is missing
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
Markers at Y lower limits are missing.
How can I fix that? Thanks!
Rui
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
采纳的回答
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
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...
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!