normalizing a symbolic expression?
9 views (last 30 days)
Show older comments
Radu Trimbitas
on 20 Mar 2020
Commented: Walter Roberson
on 27 Mar 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 Comments
Accepted Answer
Walter Roberson
on 21 Mar 2020
feval(symengine, 'normal', expression)
Otherwise,
[tnum, tden] = numden(expression)
simplify(tnum) / simplify(tden)
3 Comments
More Answers (0)
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!