MATLAB: Change minor units on x axis.

axisplot

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!

Best Answer

Change the XTick property,
ax = gca;
ax.XTick = 0:5:200;
Related Question