Find out the real part of symbolic expression by using MuPad
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Salvatore Mazzarino
il 1 Dic 2013
Modificato: Andrei Bobrov
il 2 Dic 2013
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?
0 Commenti
Risposta accettata
Andrei Bobrov
il 2 Dic 2013
Modificato: Andrei Bobrov
il 2 Dic 2013
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));
0 Commenti
Più risposte (1)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!