Add Specific Numbers to x-axis
38 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Brave A
el 27 de Feb. de 2021
Comentada: Cris LaPierre
el 27 de Feb. de 2021
Hello
I would like to add/show specific numbers in x-axis.Like numbers I showed here 52 and last number 142.
0 comentarios
Respuesta aceptada
Cris LaPierre
el 27 de Feb. de 2021
x=0:142;
y=linspace(0.1, 2.7,length(x));
bar(x,y)
xline(52,'m--')
xticks(sort([xticks 52 142]));
4 comentarios
Cris LaPierre
el 27 de Feb. de 2021
Which zeros do you want removed?
You could either
- delete or rename the tick label
- delete or move the tick
- change you axis limits to not include 0
Más respuestas (0)
Ver también
Categorías
Más información sobre Axis Labels 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!