How to change the x ticket lables in a plot?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I have : x=1:12 %the index of months
y=x.^2;
plot(x,y)
No I want to change the position of x labels from below the tickets to the middle of interval (between every 2 tickets). Can you please help me?
1 comentario
Matt Fig
el 6 de Nov. de 2012
It is not clear what you intend. Where exactly do you want the ticklabels? At [1 3 5 7 9 11] or what?
Respuesta aceptada
Azzi Abdelmalek
el 6 de Nov. de 2012
Editada: Azzi Abdelmalek
el 6 de Nov. de 2012
x=1:12 %the index of months
y=x.^2;
plot(x,y)
set(gca,'xtick',[ 1 3 5 7 9 11]) % use whatever you want
0 comentarios
Más respuestas (1)
Kye Taylor
el 6 de Nov. de 2012
Try
x = 1:12;
y = x.^2;
plot(x,y);
tickLocations = [3,6,9]; % change to whatever you want
tickLabels = {'3','6','9'}; % change to whatever you want
set(gca,'xTick',tickLocations,'xTickLabel',tickLabels)
0 comentarios
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!