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 ExchangePolynomials についてさらに検索

質問済み:

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