Change minor units on x axis.

9 views (last 30 days)
Neje
Neje on 29 May 2018
Commented: Neje on 29 May 2018
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!

Accepted Answer

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

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!