Looking for method to simplify equation within MATLAB

Say i have the equation where . I am looking for a way to simplify this equation to express X in terms of and c. through matlab, in a scaleable manner.

 Accepted Answer

syms a b c d
X = 2*a+3*b+7*c+d;
X = subs(X,d,2*a+4*b)

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Release

R2022a

Tags

Asked:

on 10 May 2022

Commented:

on 10 May 2022

Community Treasure Hunt

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

Start Hunting!