Azzera filtri
Azzera filtri

how to multipy two polynomial expression?

82 visualizzazioni (ultimi 30 giorni)
hi i have to multiply two polynomial equations example:a=1+x+x^2 b=1+X output should be 1+2x+2x^2+x^3 plz do reply...

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 3 Nov 2011
syms x
a=1+x+x^2
b=1+x
out = expand(a*b)
or
coeffa = [1 1 1];
coeffb = [1 1];
out = conv(coeffa,coeffb);

Più risposte (0)

Categorie

Scopri di più su Polynomials 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!

Translated by