how to calculate magnitude and phase angle of a complex number
819 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
lowcalorie
le 15 Fév 2012
Réponse apportée : Dhanush
le 12 Sep 2024
for example -7+13i
how do i calculate and display the magnitude and phase angle of this
0 commentaires
Réponse acceptée
Andrei Bobrov
le 15 Fév 2012
z = -7+13i
M = abs(z) %magnitude
Ph = angle(z) %phase angle
Ph2 = atan2(imag(z),real(z)) %phase angle
3 commentaires
Nicholas Cassavaugh
le 13 Oct 2021
Yes, it is in radians. You can convert radians to degrees if you wish afterward.
Plus de réponses (2)
MALAV DALAL
le 5 Mai 2017
Modifié(e) : Walter Roberson
le 5 Mai 2017
z = 1.5+iw
ph = angle(z)
0 commentaires
Dhanush
le 12 Sep 2024
x = 1 + i*1;
Magnitude = abs(x);
Phase_radians = angle(x);
Phase_degrees = rad2deg(Phase_radians);
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!