matlab计算一下风向夹角

1  南风为正,东风为正

clear

clc

close all

% 南北方向南风为正,东西方向东风为正

E =5; % 东方向分量Y

S =5; % 南方向分量 X

% 计算合风速

V = sqrt(E^2 +S^2);

% 计算合风速与北方向的夹角(以度为单位)

theta_deg = atan2d(-E, -S)+180;

theta_deg =360-mod(theta_deg+180,360);

% 显示结果

fprintf('合风速:%.2f\n', V);

fprintf('合风速与北方向的夹角:%.2f度\n', theta_deg);

2 北风为正,西风为正

clear

clc

close all

% 南北方向向北为正,东西方向向西为正

W =5; % 西方向分量Y

N =5; % 北方向分量 X

% 计算合风速

V = sqrt(W^2 +N^2);

% 计算合风速与北方向的夹角(以度为单位)

theta_deg = atan2d(W, N)+180;

theta_deg =360-mod(theta_deg+180,360);

% 显示结果

fprintf('合风速:%.2f\n', V);

fprintf('合风速与北方向的夹角:%.2f度\n', theta_deg);

你可能感兴趣的:(matlab)