how to calculate magnitude and phase angle of a complex number

817 ビュー (過去 30 日間)
lowcalorie
lowcalorie 2012 年 2 月 15 日
回答済み: Dhanush 2024 年 9 月 12 日
for example -7+13i
how do i calculate and display the magnitude and phase angle of this

採用された回答

Andrei Bobrov
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 件のコメント
Reza Nikfar
Reza Nikfar 2020 年 9 月 28 日
no this is radian
Nicholas Cassavaugh
Nicholas Cassavaugh 2021 年 10 月 13 日
Yes, it is in radians. You can convert radians to degrees if you wish afterward.

サインインしてコメントする。

その他の回答 (2 件)

MALAV DALAL
MALAV DALAL 2017 年 5 月 5 日
編集済み: Walter Roberson 2017 年 5 月 5 日
z = 1.5+iw
ph = angle(z)

Dhanush
Dhanush 2024 年 9 月 12 日
x = 1 + i*1;
Magnitude = abs(x);
Phase_radians = angle(x);
Phase_degrees = rad2deg(Phase_radians);

Community Treasure Hunt

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

Start Hunting!

Translated by