Borrar filtros
Borrar filtros

Simplification of complex symbolic fratcion

5 visualizaciones (últimos 30 días)
Michael
Michael el 11 de Nov. de 2021
Comentada: Michael el 12 de Nov. de 2021
Hello,
I have a complex symbolic fraction.
syms U_1 R C omega positive
U_2 = -(U_1*sym(1i))/(C^2*R^2*omega^sym(2)*sym(1i) + 3*C*R*omega - sym(1i))
U_2 = 
How can i get rid of the imaginary unit as common factor in the numerator and the denominator of this fraction.
simplifyFraction(U_2)
ans = 
does not work.
Kind regards
Michael

Respuesta aceptada

Walter Roberson
Walter Roberson el 11 de Nov. de 2021
syms U_1 R C omega positive
U_2 = -(U_1*sym(1i))/(C^2*R^2*omega^sym(2)*sym(1i) + 3*C*R*omega - sym(1i))
U_2 = 
[N, D] = numden(U_2)
N = 
D = 
U_2a = (N*1i)/(D*1i)
U_2a = 
  3 comentarios
Walter Roberson
Walter Roberson el 11 de Nov. de 2021
Yes, of course there are other options. For example you could use feval(symengine) to pass commands directly into the symbolic engine using MuPad language constructs.
But you are not going to be able to just call simplify() or rewrite()
Michael
Michael el 12 de Nov. de 2021
Thank you for the explanation.
Michael

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by