Does MATLAB allow us to define a polynomial with unknown coeffcients?

3 Ansichten (letzte 30 Tage)
Hi does MATLAB allow us to define a polynomial with unknown coefficients? I know the function poly2sym where we enter the array of coefficients as an input. But if I do not have coefficients? I actually need to define two polynomials with unknown coefficients and then equate their product to 1 to find all the coefficients. I know only one of the coefficients in one of the polynomials.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 5 Feb. 2014
Bearbeitet: Walter Roberson am 6 Feb. 2014
syms x
a = sym('a', [3 1]);
a(3)*x^2+a(2)*x+a(1)
  4 Kommentare
Walter Roberson
Walter Roberson am 5 Feb. 2014
Shruti, you must have caught my posting before I fixed it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by