Draw a line
50 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Vibol TEAV
am 5 Jun. 2011
Beantwortet: Steven Lord
am 7 Nov. 2022
I'm new to Matlab, I wanna draw a simple line x=4, or y=9. Someone kindly help me?
0 Kommentare
Akzeptierte Antwort
Matt Fig
am 5 Jun. 2011
line([4 4],[0 10],'color','b') % Blue line from (4,0) to (4,10)
line([0 10],[9 9],'color','r') % Red line from (0,9) to (10,9)
axis([0 10 0 10]) % Set the axis limits
You can do the same thing with the PLOT command.
Weitere Antworten (1)
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!