multiply Polynomial with constants

hello
i want to multiply (2x+1)*(c1x+c2x^2)
how should i do?

댓글 수: 2

KSSV
KSSV 2022년 3월 17일
You mean multiply?
marzie jamshidi
marzie jamshidi 2022년 3월 17일
yes

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2022년 3월 17일

1 개 추천

syms c1 c2 x
(2*x+1)*(c1*x + c2*x^2)
ans = 
collect(expand(ans),x)
ans = 

카테고리

도움말 센터File Exchange에서 Polynomials에 대해 자세히 알아보기

질문:

2022년 3월 17일

댓글:

2022년 3월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by