How to get the coefficients of an equation
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Geovane Gomes
il 8 Nov 2023
Risposto: Sulaymon Eshkabilov
il 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 Commenti
Risposta accettata
Più risposte (1)
Sulaymon Eshkabilov
il 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 Commenti
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!