How to get the coefficients of an equation
5 views (last 30 days)
Show older comments
Geovane Gomes
on 8 Nov 2023
Answered: Sulaymon Eshkabilov
on 8 Nov 2023
Dear all,
Is it possible to extract the coefficients of an equantion defined as below:
syms x1 x2
eq = 2*x1 + x2 <= 0
By using coeffs and sym2poly did not work when it has the relational operator "<=".
c = coeffs(eq)
c = sym2poly(eq)
2 Comments
Accepted Answer
More Answers (1)
Sulaymon Eshkabilov
on 8 Nov 2023
Maybe it is appropriate to work in a reverse order, e.g.:
syms x1 x2
Coeff = [2;1];
eq = [x1, x2]*Coeff<=0
0 Comments
See Also
Categories
Find more on Symbolic Math Toolbox 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!