How to draw a vertical line with a given height?
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Lilllly
am 4 Mai 2016
Beantwortet: CS Researcher
am 4 Mai 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 Kommentare
Akzeptierte Antwort
CS Researcher
am 4 Mai 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!