필터 지우기
필터 지우기

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

조회 수: 16 (최근 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 CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by