How to plot wind speed and direction
이전 댓글 표시
i have some difficulties to plot wind speed and direction. is there any someone answer my questions especially for complete these syntag? thank you for your attention.
x=ncread('uwind.nc','LONGITUDE21_94') y=ncread('uwind.nc','LATITUDE44_78') z=ncread('uwind.nc','TIME') v=ncread('uwind.nc','U10') save('dataangin','x','y','z','v')
v1=v(:,:,4000)
답변 (1개)
KSSV
2016년 3월 24일
0 개 추천
Plotting wind direction is a straight forward attempt in MATLAB.
If you have (x,y) coordinates and respective wind directions (u,v); use quiver(x,y,u,v). This is in case of 2D.
If you have (x,y,z) coordinates and respective wind directions (u,v,w); use quiver3(x,y,z,u,v,w). This is in case of 3D.
For magnitude, calculate the resultant and use contour.
댓글 수: 1
Lilya
2019년 11월 21일
Hi Sir KSSV, I just read your comment above 'For magnitude, calculate the resultant and use contour' , How to do that?
Much appreciated.
카테고리
도움말 센터 및 File Exchange에서 Wind Power에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!