Text increments of the x-axis

1 Ansicht (letzte 30 Tage)
Luke Megonigal
Luke Megonigal am 1 Dez. 2020
Beantwortet: Steve Eddins am 1 Dez. 2020
Hello
A question about the appearance of a plot's x-axis.
I have a plot whose domain is [0 4]. I can plot this and have xlim([0 4]). When I do this, the plot has x-increments labeled 0, 1, 2, 3, 4, as you would expect.
Is there any way to remove '0' and '4' from being named? In other words, is there a way to make the plot look the same as before, that is, have the same xlimit, but remove '0' and '4' such that it only says '1', '2', '3'?
Thanks,
The application is plotting mode shapes.

Antworten (1)

Steve Eddins
Steve Eddins am 1 Dez. 2020
Sure, you can set the XTicks property of the axes object directly.
ax = gca;
ax.XTicks = [1 2 3];
A shortcut for this is:
xticks([1 2 3])

Kategorien

Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by