How to draw a vertical line with a given height?
51 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lilllly
el 4 de Mayo de 2016
Respondida: CS Researcher
el 4 de Mayo de 2016
I use
line([1 1]*posx)
to draw a vertical line in a figure. Can I also draw a vertical line with a specific height?
0 comentarios
Respuesta aceptada
CS Researcher
el 4 de Mayo de 2016
For a line from (x,y) to (x,y+height), Use this:
line([x x], [y y+height]);
From origin it could just be
line([0 0], [0 height]);
0 comentarios
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!