Replacing segmented equations within equation with variables
Show older comments
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?
Answers (1)
John D'Errico
on 30 Aug 2023
Edited: John D'Errico
on 30 Aug 2023
Literally trivial. For example...
syms x y z
EQ = y/x + sin(x^2/y^2)
simplify(subs(EQ,x,y*z))
1 Comment
Categories
Find more on Operations on Strings 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!