Exponential form, polar form, Cartesian form for complex numbers question.
古いコメントを表示
This is the question I have and I have no idea how to write the code!
Convert the complex number 8-7j into exponential and polar form. [2 marks]
I know already
syms a a=8-7j [theta, r]cart2pol(8, 7)
for the polar for but thats it
Find all five values of the following expression, giving your answers in Cartesian form: (-2+5j)^(1/5) [6 marks]
Any ideas?
回答 (1 件)
Star Strider
2015 年 3 月 24 日
0 投票
Among others, see the Complex Numbers core MATLAB and the Symbolic Math Toolbox Complex Numbers documentation.
4 件のコメント
Michael Andrews
2015 年 3 月 25 日
Star Strider
2015 年 3 月 25 日
If I remember correctly:
Polar form:
p = @(z) [abs(z) angle(z)]; % Polar (Phasor) Form , ‘z’ Complex
Exponential form:
e = exp(z);
Your textbooks and lectures haven’t discussed this?
Do a DuckDuckGo search on ‘Euler Identities’ for details.
Michael Andrews
2015 年 3 月 25 日
Star Strider
2015 年 3 月 25 日
My pleasure!
カテゴリ
ヘルプ センター および File Exchange で Polar Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!