normalizing a symbolic expression?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Radu Trimbitas
le 20 Mar 2020
Commenté : Walter Roberson
le 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 commentaires
Réponse acceptée
Walter Roberson
le 21 Mar 2020
feval(symengine, 'normal', expression)
Otherwise,
[tnum, tden] = numden(expression)
simplify(tnum) / simplify(tden)
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!