The matlab quiver arrow is lying down.

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)

Play with scale.
scale = 0.5 ;
figure()
quiver(time,Height,uu,vv,scale)

1 Comment

Above is the graph with the scale corrected.
But I want to display it like the graph below.
I wonder why arrows are drawn in 3D.
It feels like an arrow is pointing at me off the screen.

Sign in to comment.

Categories

Products

Tags

Asked:

on 24 Dec 2021

Commented:

on 24 Dec 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!