Converting polar form complex numbers into rectangular form
280 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dalton Houghton-Schaffer
el 4 de Sept. de 2019
Comentada: Voss
el 3 de Abr. de 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 )
Respuesta aceptada
KALYAN ACHARJYA
el 4 de Sept. de 2019
Editada: KALYAN ACHARJYA
el 4 de Sept. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!