Real and Imaginary part of this function please

2 vues (au cours des 30 derniers jours)
Paramonte
Paramonte le 5 Juin 2019
Commenté : Paramonte le 6 Juin 2019
Hi there, I have this expression:
syms R C w a real
assume(R>0)
assume(C>0)
assume(w>0)
assume(a>0)
z=R/(1+(R*C)*(i*w)^a)
z =
R/(C*R*(w*1i)^a + 1)
I want to get the real part of Z
>> real(z)
ans =
R*real(1/(C*R*(w*1i)^a + 1))
and the imaginary part of Z
>> imag(z)
ans =
R*imag(1/(C*R*(w*1i)^a + 1))
How do I get the true real and Imaginary parts?
Thank you for your time!

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Juin 2019
simplify( rewrite(real(z), 'exp') )
simplify( rewrite(imag(z), 'exp') )
  1 commentaire
Paramonte
Paramonte le 6 Juin 2019
Dear Walter
It worked like a treat. Forever grateful sir!
Regards

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by