multiply Polynomial with constants
Mostrar comentarios más antiguos
hello
i want to multiply (2x+1)*(c1x+c2x^2)
how should i do?
Respuestas (1)
syms c1 c2 x
(2*x+1)*(c1*x + c2*x^2)
collect(expand(ans),x)
1 comentario
marzie jamshidi
el 17 de Mzo. de 2022
Categorías
Más información sobre Polynomials en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

