Converting polar form complex numbers into rectangular form

376 次查看(过去 30 天)
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 )
  4 个评论
Rama
Rama 2024-4-3,2:29
移动:Voss 2024-4-3,17:19
Create the following two functions in MATLAB in order to easily convert between complex rectangular and polar forms. Test the functions by confirming that 3 + 5j  5.859
Voss
Voss 2024-4-3,17:21
@Rama: To ask a new question, use this link:
Be sure not merely to post your homework assignment, but ask a specific question about what you are having trouble with and show any attempt you have made to solve it yourself.

请先登录,再进行评论。

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-9-4
编辑:KALYAN ACHARJYA 2019-9-4
"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:
data11.png

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Electrical Block Libraries 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by