How to draw a line from the variable y-axis
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Martin Olafsen
el 6 de Nov. de 2017
Comentada: Martin Olafsen
el 6 de Nov. de 2017
Hi
I am making a 2D plot. The x-axis is located at y = 0, but I do not know the position of the y-axis, it depends on the results. Is there a way to find the x position of the y-axis? (I do not want a fixed location of the y-axis, as it should depend on the results.)
Regards
2 comentarios
KSSV
el 6 de Nov. de 2017
YOu should have both (X,y_ in hand t plot. Or you have to plot w.r.t indices. YOur question is not clear.
Martin Olafsen
el 6 de Nov. de 2017
Editada: Martin Olafsen
el 6 de Nov. de 2017
Respuesta aceptada
Image Analyst
el 6 de Nov. de 2017
You can use xlim() and ylim() to determine the limits of the axes that MATLAB used and drew on your graph
xLimits = xlim();
yLimits = ylim();
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!