How to add arrow to a line (like quiver)
200 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Torkan
am 25 Feb. 2020
Kommentiert: Dariusz Maton
am 30 Aug. 2023
Hello,
Consider I have a smple line. I want to add arrow (for example 4 arrows to this line) and show it in plot. Is it possible?
x = [0,1,2,3];
y=[ 4,4,4,4]
plot(x,y)
Thnaks
0 Kommentare
Akzeptierte Antwort
Sai Sri Pathuri
am 28 Feb. 2020
You may add marker ‘>’ to your plot. The below command plots the line with markers.
plot(x,y,'->')
If you specify only a marker symbol without a line style (as shown below), then plot displays only the markers with no line connecting them
plot(x,y,'>')
You may refer the following documentation to add markers
2 Kommentare
Brent F
am 22 Jun. 2021
This does not draw an arrowhead pointing in the direction of the line. It only adds a right-pointing triangle symbol marker at each datapoint.
Dariusz Maton
am 30 Aug. 2023
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh 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!