How can I increase x-axis ticks by 5 while the limit is auto?
1 次查看(过去 30 天)
显示 更早的评论
How can I increase x-axis ticks by 5 while the limit is auto?
xticks(0:5:100)
this for example will increase it by 5 but I have to specify the limit
0 个评论
采纳的回答
dpb
2022-12-28
Don't remember otomh whether it will affect the auto-range setting or not, but to solve the above issue about range, use something like
xlm=xlim; % retrieve current x limits
xticks(0:5:xlm(end)) % set by 5 over that range
You can be more clever about lower limit and rounding, etc., etc., depending on need and characteristics of the actual data.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!