Find out the real part of symbolic expression by using MuPad

1 次查看(过去 30 天)
Hello. I'm trying to find out the real part of the following symbolic expression:
y0*(y2+jy0)/(y0+jy2)
by using MuPad
I write the following code in the mupad command window
Re(y0*(y2+I*y0)/(y0+I*y2))
but I don't get the result I expect. Do you know how to fix out the issue?

采纳的回答

Andrei Bobrov
Andrei Bobrov 2013-12-2
编辑:Andrei Bobrov 2013-12-2
Re(y0*(y2+I*y0)/(y0+I*y2)) assuming ([y0,y2],Type::Real)
or
assume([y0,y2],Type::Real);
Re(y0*(y2+I*y0)/(y0+I*y2));

更多回答(1 个)

Walter Roberson
Walter Roberson 2013-12-2
simplify(Re(y0*(y2+I*y0)/(y0+I*y2))) assuming real

类别

Help CenterFile Exchange 中查找有关 Properties and Assumptions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by