normalizing a symbolic expression?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Radu Trimbitas
am 20 Mär. 2020
Kommentiert: Walter Roberson
am 27 Mär. 2020
Is there any corresponden in Symbolic Math Toolbox for Maple or Mupad function normal ? (normalizing a rational expression, write it with a single denominator, factored)
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Mär. 2020
feval(symengine, 'normal', expression)
Otherwise,
[tnum, tden] = numden(expression)
simplify(tnum) / simplify(tden)
3 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!