Change minor units on x axis.

12 次查看(过去 30 天)
Hello! A simple question, I have the figure above, has on x axis x scale 0, 20, 40..200. Meaning each unit is 20. I want to scale it to 0, 5, 10, 15...200. Meaning each unit must be 5.
In short have to change the scale / minor units on the x-axis. In the axis properties of matalb for x scale I a only able to see 'log' and 'linear' scale.
How should I make the change? Thanks!

采纳的回答

Ameer Hamza
Ameer Hamza 2018-5-29
Change the XTick property,
ax = gca;
ax.XTick = 0:5:200;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by