Converting rectangular form complex numbers into polar form
347 ビュー (過去 30 日間)
古いコメントを表示
Dalton Houghton-Schaffer
2019 年 9 月 4 日
コメント済み: Dwij Padia
2021 年 3 月 23 日
I am having trouble converting rectangular form complex numbers into polar form by writing a MATLAB script file.
I'm not fimular with MATLAB keywords but need to use this to prove my answers.
Z = 4 + j 5
0 件のコメント
採用された回答
Robin Gangopadhya
2019 年 9 月 4 日
You could have found this by searching right here(some one answered in 2014)...does it work for you?
x=2+3j
rho=abs(x)
theta=angle(x)
%-------------------
x=rho*exp(j*theta)
2 件のコメント
その他の回答 (1 件)
Robin Gangopadhya
2019 年 9 月 4 日
it is the absolute value of the complex number a+jb= sqrt(a^2+b^2)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!