deconv result does not match with polynomial division.

1 回表示 (過去 30 日間)
Seetha Rama Raju Sanapala
Seetha Rama Raju Sanapala 2015 年 4 月 12 日
編集済み: Jan 2015 年 4 月 12 日
I wanted to divide x^2+5x+6 by x+1 and get the quotient and remainder and used deconv as below.
[q,r]=deconv([6 5 1], [1 1])
I expected the answer to be
q = [4 1] and r = 2. But what I got was
q = [6 -1] and r = [0 0 2]. What are the comments on this result?

採用された回答

Jan
Jan 2015 年 4 月 12 日
編集済み: Jan 2015 年 4 月 12 日
The coefficients of the polynomials are defined in the opposite direction, such that x^2+5x+6 is [1, 5, 6]:
[q, r] = deconv([1, 5, 6], [1, 1])
q =
1 4
r =
0 0 2

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by