set limits using xlim for strings
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aditya
el 2 de Feb. de 2014
Comentada: Image Analyst
el 3 de Feb. de 2014
Hi, I wanted to know how to set string limits for a graph. I wanted to set axis limits as months of a year ('Jan' 'Feb 'Mar'). Also wanted to know whether I can pass an array or pass variable with predefined values in the xlim function. Thanks in advance.
0 comentarios
Respuesta aceptada
Amit
el 2 de Feb. de 2014
set(gca,'XTick',1:12,'XTickLabel',{'Jan','Feb','Mar','Apr' .... etc})
2 comentarios
Image Analyst
el 3 de Feb. de 2014
Sure. You can make up a cell array with any string variables you want in it.
index = 1;
for y = 2009 : 2020
ca{index} = y; % or num2str(y) or sprintf('Year=%d', y) or whatever...
index = index + 1;
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!