Replacing segmented equations within equation with variables
Afficher commentaires plus anciens
I have a really long and stupid equation and I need to factor out a fraction of variables. For example x/y=z, and my function is filled with x and y variables, but I want to replace them with z while keeping the relationship x/y true. Is there a MATLAB function for this purpose or am I condemned to handwriting it?
Réponses (1)
John D'Errico
le 30 Août 2023
Modifié(e) : John D'Errico
le 30 Août 2023
Literally trivial. For example...
syms x y z
EQ = y/x + sin(x^2/y^2)
simplify(subs(EQ,x,y*z))
1 commentaire
Catégories
En savoir plus sur Operations on Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!