normalizing a symbolic expression?

6 次查看(过去 30 天)
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)

采纳的回答

Walter Roberson
Walter Roberson 2020-3-21
feval(symengine, 'normal', expression)
Otherwise,
[tnum, tden] = numden(expression)
simplify(tnum) / simplify(tden)
  3 个评论
Radu Trimbitas
Radu Trimbitas 2020-3-27
I found in documentation a function simplifyFraction, which seems to be satisfactory in several situations.
Thank you again, Walter Robertson!
Walter Roberson
Walter Roberson 2020-3-27
I don't think I ever noticed that function!

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by