Converting polar form complex numbers into rectangular form
279 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dalton Houghton-Schaffer
le 4 Sep 2019
Commenté : Voss
le 3 Avr 2024
I am having trouble converting polar form complex numbers into rectangular form by writing a MATLAB script file.
I'm not fimular with MATLAB keywords but need to use this to prove my answers.
Z = 0.5 angle( pi / 4 )
or
Z = 0.5 angle( - 45 degrees )
Réponse acceptée
KALYAN ACHARJYA
le 4 Sep 2019
Modifié(e) : KALYAN ACHARJYA
le 4 Sep 2019
"Converting polar form complex numbers into rectangular form"
z=0.5;theta=pi/4;
[X,Y]=pol2cart(theta,z)
Result:
X =
0.3536
Y =
0.3536
Manually:
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!