该函数根据正弦值和余弦值唯一确定角度 (-180,180] 度数或(-pi, pi] 弧度数)。
用法: theta=angleCalc(S,C,out_mode)
S:角度的正弦值C:角度的cos值out_mode: 'deg' 或 'rad' 默认输出模式是度数
例子: theta=angleCalc(sin(-2*pi/3),cos(-2*pi/3)) θ = -120; theta=angleCalc(sin(2*pi/3),cos(2*pi/3),'rad') θ= 2.0944 [弧度]
2021-09-06 18:11:43
1KB
matlab
1