Creating tick marks on a plot

I can't find any previous question that is similar to mine somehow. All I need to show is an x-axis that consists of 1 to 24 with the tick marks shown for 1, 2, 3, 4, and so on until 24. Currently the plot is giving me tick marks for every five integers.
Thank you for any help

Antworten (1)

Star Strider
Star Strider am 3 Jun. 2018

0 Stimmen

Try this:
x = 1:24;
y = rand(1,24);
figure
plot(x, y)
set(gca, 'XTick',x) % Define Specific X-Tick Locations

Tags

Gefragt:

am 3 Jun. 2018

Beantwortet:

am 3 Jun. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by