how to calculate magnitude and phase angle of a complex number
817 ビュー (過去 30 日間)
古いコメントを表示
for example -7+13i
how do i calculate and display the magnitude and phase angle of this
0 件のコメント
採用された回答
Andrei Bobrov
2012 年 2 月 15 日
z = -7+13i
M = abs(z) %magnitude
Ph = angle(z) %phase angle
Ph2 = atan2(imag(z),real(z)) %phase angle
3 件のコメント
Nicholas Cassavaugh
2021 年 10 月 13 日
Yes, it is in radians. You can convert radians to degrees if you wish afterward.
その他の回答 (2 件)
Dhanush
2024 年 9 月 12 日
x = 1 + i*1;
Magnitude = abs(x);
Phase_radians = angle(x);
Phase_degrees = rad2deg(Phase_radians);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!