How to get the coefficients of an equation
Afficher commentaires plus anciens
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 commentaires
Dyuman Joshi
le 8 Nov 2023
What is the expected output?
[1 2] or [2 1]? or something else?
Geovane Gomes
le 8 Nov 2023
Réponse acceptée
Plus de réponses (1)
Maybe it is appropriate to work in a reverse order, e.g.:
syms x1 x2
Coeff = [2;1];
eq = [x1, x2]*Coeff<=0
Catégories
En savoir plus sur Symbolic Math Toolbox 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!


