Splitting Wind direction into four quadrants
Ältere Kommentare anzeigen
Hello,
I had u & V component of wind. I converted them to wind speed & direction, using
wind_speed=sqrt((u^2)+(v^2));
wind_direction=180 + atand(u/v);
The problem is wind direction is not splitting into quadrants. As done here http://wx.gmu.edu/dev/clim301/lectures/wind/wind-uv.html
Akzeptierte Antwort
Weitere Antworten (1)
Kelly Kearney
am 15 Jan. 2016
1 Stimme
As mentioned in those lecture notes, you'll need to use atan2 instead of atan (not atand either... your inputs aren't in degrees!) to get the four-quadrant result you want.
3 Kommentare
Student new
am 15 Jan. 2016
Kelly Kearney
am 15 Jan. 2016
Right, never mind on the degrees comment. I was mistakenly reversing inputs and outputs in my head. But as Chad answered, you still need the atan2d variant.
Student new
am 15 Jan. 2016
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!