Angle function output convention

4 次查看(过去 30 天)
Why does the function 'angle(complex_input)' output values between +pi and -pi radians? Normal convention is 0 to 2*pi. I find this confusing. What am I misunderstanding? Is there a way to convert this? Simply adding pi to the output did not seem to work.

回答(4 个)

dpb
dpb 2015-3-12
编辑:dpb 2015-3-12
It is consistent with other computer languages for atan2, etc., so for consistency, I presume, TMW chose to keep it that way instead of being "odd man out".
To convert, add 2pi only for angle < 0

Roger Stafford
Roger Stafford 2015-3-12
a = mod(angle(z),2*pi);

Miguel Melnychuk
Miguel Melnychuk 2015-3-12
That makes sense. Thanks.

Miguel Melnychuk
Miguel Melnychuk 2015-3-12
Thanks very much everyone. This worked for me. I understand a bit better now.

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by