Converting polar form complex numbers into rectangular form
117 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dalton Houghton-Schaffer
il 4 Set 2019
Commentato: Voss
il 3 Apr 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 )
Risposta accettata
KALYAN ACHARJYA
il 4 Set 2019
Modificato: KALYAN ACHARJYA
il 4 Set 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 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!