MATLAB: Change the axis tick

axisaxis ticksticksx axisx-axis ticks

Hey
How do I change the axis tick on my x-axis? Right now it ticks= 0, 2, 4, 6 … etc., but I want it to go: 0, 1, 2, 3, 4, 5 … etc.
Thank you!

Best Answer

set(gca,'xtick',1:1:10)
replace 10 with your larger value