Remove the bottom x-axis line of a plot
451 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
Please how can I remove the bottom line of X-axis of a plot and leave the top x-axis line
Thanks
0 comentarios
Respuesta aceptada
TTA
el 26 de Mayo de 2022
2 comentarios
Más respuestas (1)
Veronica Taurino
el 26 de Mayo de 2022
Editada: Veronica Taurino
el 26 de Mayo de 2022
In general, to move your x-asix on top:
set(gca,'XAxisLocation','top')
To hide the axis:
set(gca,'xtick',[])
or
h = gca;
h.XAxis.Visible = 'off';
2 comentarios
Veronica Taurino
el 26 de Mayo de 2022
Editada: Veronica Taurino
el 26 de Mayo de 2022
I gave you more options because your need is not clear to me. You should try one of the above. I think the first one could be fine:
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
set(gca,'XAxisLocation','top')
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!