Drawing the x-axis at y=0
200 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
David
el 4 de Nov. de 2011
Comentada: Christian Schröder
el 18 de En. de 2024
Hello. At least as the default option, MATLAB draws the x-axis at the bottom-most part of the graph. However, I would like to draw it at y=0 as is a common convention. Is it possible in MATLAB? (including the scale on the axis, and replacing the default axis drawn at the bottom)
Thanks, David
0 comentarios
Respuesta aceptada
Brian Russell
el 30 de Abr. de 2021
if all you want is dark axes on your plot at x = 0 and y = 0 you just need the commands xline(0) and yline(0). This question is all over MATLAB Central and everybody gives a more complicated solution. Maybe i don't understand the question!
2 comentarios
Walter Roberson
el 1 de Mayo de 2021
xline() and yline() are new as of R2018b; a lot of the other replies are dealing with older releases.
Gehad Qaki
el 7 de Dic. de 2022
This is incredible @Brian Russell. Thank you so much for the very simple solution to a very simple problem. I urge everyone to upvote this response so people see it quicker!
Más respuestas (4)
Kyle Johnson
el 30 de Mzo. de 2023
Matlab now has support for this. You can set the property of the axes handle. No tricks of FEX required. :)
ax = gca;
ax.XAxisLocation = "origin";
ax.YAxisLocation = "origin";
1 comentario
Christian Schröder
el 18 de En. de 2024
Thanks! This is the correct way to do this in modern MATLAB, and this should be the accepted answer.
Meade
el 18 de En. de 2017
For posterity, this has been fixed in the HG2 Update. Linked below since this thread is currently the top search result on the topic.
2 comentarios
Bartche
el 3 de Mzo. de 2021
The page you were looking for does not exist. Use the search box or browse topics below to find the page you were looking for.
Walter Roberson
el 3 de Mzo. de 2021
Editada: Walter Roberson
el 1 de Mayo de 2021
Ver también
Categorías
Más información sobre Graphics Performance 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!