MATLAB Function Reference Previous page   Next Page
deconv

Deconvolution and polynomial division

Syntax

Description

[q,r] = deconv(v,u) deconvolves vector u out of vector v, using long division. The quotient is returned in vector q and the remainder in vector r such that v = conv(u,q)+r.

If u and v are vectors of polynomial coefficients, convolving them is equivalent to multiplying the two polynomials, and deconvolution is polynomial division. The result of dividing v by u is quotient q and remainder r.

Examples

If

the convolution is

Use deconvolution to recover u:

This gives a quotient equal to v and a zero remainder.

Algorithm

deconv uses the filter primitive.

See Also

conv, residue


Previous page  decic del2 Next page

© 1994-2005 The MathWorks, Inc.