How do i get the arg(A(j)) and I A(j) I of an equation?

15 ビュー (過去 30 日間)
jey sun
jey sun 2014 年 3 月 25 日
編集済み: Mischa Kim 2014 年 3 月 25 日
I have the following equation of A= ((1+2j) / ((6j^4)+(8j^3)+(2j^2)+(7j)+2 ) and need to get it in the terms of A(j) and arg(A(j))
I'm a beginner in matlab and am still not sure of the code for this.

採用された回答

Mischa Kim
Mischa Kim 2014 年 3 月 25 日
編集済み: Mischa Kim 2014 年 3 月 25 日
Jey, use abs(A) and phase(A) (or angle(A)):
A = (1+2j)/((6j^4)+(8j^3)+(2j^2)+(7j)+2);
abs(A)
ans =
0.001609781751232
phase(A)
ans =
1.479232834161942
angle(A)
ans =
1.479232834161942

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by