deconv

Deconvolution and polynomial division.

📝 Syntax

  • [q, r] = deconv(b, a)

📥 Input argument

  • a - row or column vectors

  • b - row or column vectors

📤 Output argument

  • q - quotient: row or column vector

  • r - remainder: row or column vector

📄 Description

[q, r] = deconv(b, a) performs deconvolution on vectorb by vector a using long division.

It returns the quotient q and remainderr such that b = conv(a, q) + r.

In the context of polynomial coefficients, deconvolving vectorsb and a is akin to dividing the polynomial represented byb by the polynomial represented by a.

💡 Example

🔗 See also

conv, poly.

🕔 History

Version
📄 Description

1.3.0

initial version

Last updated

Was this helpful?