The matlab quiver arrow is lying down.
Show older comments
I drew a graph using the matlab quiver function, but the arrows appear in 3D on a plane, so it is difficult to recognize them.
The x-axis is observation time, the y-axis is altitude, and u and v are wind components.
figure()
quiver(time,Height,uu,vv)

Answers (1)
KSSV
on 24 Dec 2021
Play with scale.
scale = 0.5 ;
figure()
quiver(time,Height,uu,vv,scale)
1 Comment
SeungHyeop Lee
on 24 Dec 2021
Categories
Find more on Vector Fields in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
