calculate the average wind intensities

1 view (last 30 days)
I know the components of the wind u, v, z of several years. how can I calculate the average wind intensities in this time period?

Accepted Answer

Mathieu NOE
Mathieu NOE on 22 Apr 2021
hello
you need to compute the magnitude of your 3 components vector (and plot it against time)
mag =sqrt(u.^2 + v.^2 + w.^2)
  2 Comments
ELISABETTA BILLOTTA
ELISABETTA BILLOTTA on 23 Apr 2021
so you say to calculate mag as you wrote me and then graph with mag on the x axis and time on the y axis?
in the meantime, thanks for the answer
Mathieu NOE
Mathieu NOE on 23 Apr 2021
hello
I would have plotted time on the x axis and mag on the y axis
all the best

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!