Filter löschen
Filter löschen

How do you set the x axis ticks / labels to be equal to the y axis ones?

117 Ansichten (letzte 30 Tage)
I thought I could do this by the following, but it's not working:
ax1 = gca;
set(ax1,'XTick',get(ax1,'YTick'));
Instead, the x axis still has different ticks (more ticks, same range). How do I make the ticks / labels the same for both axes?
  1 Kommentar
Les Beckham
Les Beckham am 6 Apr. 2022
I think this should work if the range of the data is compatible, though it may not look very good.
Can you provide an example where this doesn't work?
Example where it does what you tell it but it may not be what you want.
plot(linspace(0,5,10), 2*rand(1,10))
ax1 = gca;
set(ax1,'XTick',get(ax1,'YTick'));
grid on

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Star Strider
Star Strider am 6 Apr. 2022
The tick ranges are governed by the original data.
If the tick ranges are different, the only options are to either set the x-tick labels to be compatible, or re-scale the y-values to be equal to the x-values. Getting the exact values on both axes is only possible if the original number of tick values on each axis are the same —
x = 1:10;
y = x.^2/2;
figure
plot(x, y)
grid
figure
plot(x, y)
grid
yt = get(gca, 'YTick');
xt = get(gca, 'XTick');
xtl = linspace(min(yt), max(yt), numel(xt));
set(gca,'XTick',xt,'XTickLabel',compose('%.0f',xtl))
Here, there are 10 x-ticks and 11 y-ticks, so the new x-tick lables reflect that compromise.
.
  2 Kommentare
L'O.G.
L'O.G. am 6 Apr. 2022
Thanks! The issue ended up being I was setting the ticks before changing the font size! D'oh!
Star Strider
Star Strider am 6 Apr. 2022
If the tick ranges are the same (same number of ticks on both axes), then try this:
set(gca, 'XTick',xt, 'XTickLabel',yt)
x = 1:10;
y = x.^2/2.25; % Now: Equal Numbers Of Ticks On Both Axes
figure
plot(x, y)
grid
figure
plot(x, y)
grid
yt = get(gca, 'YTick');
xt = get(gca, 'XTick');
set(gca, 'XTick',xt, 'XTickLabel',yt)
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 6 Apr. 2022
Try one of these (not both):
axis equal
axis square

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by