Replacing segmented equations within equation with variables
이전 댓글 표시
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?
답변 (1개)
Literally trivial. For example...
syms x y z
EQ = y/x + sin(x^2/y^2)
simplify(subs(EQ,x,y*z))
댓글 수: 1
카테고리
도움말 센터 및 File Exchange에서 Operations on Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!