how to change axis to text format
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ibrahim AlZoubi
el 3 de Mayo de 2020
Comentada: Ibrahim AlZoubi
el 3 de Mayo de 2020
How can I change x axis to months format
ex: Jan instead of 1, and Feb instead of 2
9 comentarios
Respuesta aceptada
Ajay Kumar
el 3 de Mayo de 2020
Use xticklables for eg:
x = linspace(0,12);
y = x.^2;
plot(x,y)
xticks([0:1:12])
xticklabels({'','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'})
5 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!