Simplification of complex symbolic fratcion
조회 수: 4 (최근 30일)
이전 댓글 표시
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))
How can i get rid of the imaginary unit as common factor in the numerator and the denominator of this fraction.
simplifyFraction(U_2)
does not work.
Kind regards
Michael
댓글 수: 0
채택된 답변
Walter Roberson
2021년 11월 11일
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))
[N, D] = numden(U_2)
U_2a = (N*1i)/(D*1i)
댓글 수: 3
Walter Roberson
2021년 11월 11일
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()
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!