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

15 visualizaciones (últimos 30 días)
jey sun
jey sun el 25 de Mzo. de 2014
Editada: Mischa Kim el 25 de Mzo. de 2014
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.

Respuesta aceptada

Mischa Kim
Mischa Kim el 25 de Mzo. de 2014
Editada: Mischa Kim el 25 de Mzo. de 2014
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

Más respuestas (0)

Categorías

Más información sobre Dynamic System Models en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by