I want to draw dotted line arrow by using quiver. What do I have to do?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to draw dotted line arrow by using quiver. What do I have to do?
0 Kommentare
Akzeptierte Antwort
Matt J
am 7 Dez. 2021
For example,
load('wind','x','y','u','v')
X = x(11:22,11:22,1);
Y = y(11:22,11:22,1);
U = u(11:22,11:22,1);
V = v(11:22,11:22,1);
quiver(X,Y,U,V,':','LineWidth',1.5)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Vector Fields finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!