how to multipy two polynomial expression?

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...

 Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 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);

3 commentaires

Subhan Ullah
Subhan Ullah le 22 Déc 2020
Very helpful for me. Thanks buddy
Vikas AsodariyAa
Vikas AsodariyAa le 8 Août 2021
it's helpful sir. Thank you
Foysal Ahmmed
Foysal Ahmmed le 20 Août 2021
Thank you very much Andrei Bovrov.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polynomials 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!

Translated by