Filter löschen
Filter löschen

how to put an scale for arrow size in quiver plot for wind vector over map?

7 Ansichten (letzte 30 Tage)
Mansi Gupta
Mansi Gupta am 18 Jul. 2023
Beantwortet: KSSV am 18 Jul. 2023
I have plotted wind vector over chlorophyll-a map using quiver, I do not want to put z scale or colorbar to the arrows as it would interfere with the chlorophyll colors. But I want to put a small box with size to wind speed reference for the black arrows as all arrow size is not same. Can anyone please help with how it can be done in matlab.
Thanks in advance!

Antworten (1)

KSSV
KSSV am 18 Jul. 2023
[X,Y,Z] = peaks(50) ;
[u,v] = gradient(Z) ;
w = sqrt(u.^2+v.^2) ;
figure
hold on
h1 = pcolor(X,Y,w) ;
h2 = quiver(X,Y,u,v,'k') ;
axis tight
legend(h2,'Arrows')

Kategorien

Mehr zu Vector Fields 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!

Translated by