deconv
Deconvolve two vectors.
Calling Sequence
[b,r]= deconv (y, a)
Parameters
y:
Input vector. The convolution of a and b.
a:
The input vector.
b:
The quotient polynomial coeffecients vector.
r:
The remainder polynomial coefficients vector.
Description
[b, r] = deconv (y, a) solves for b and r such that
y = conv (a, b) + r.
If y and a are polynomial coefficient vectors, b will
contain the coefficients of the polynomial quotient and r will be
a remainder polynomial of lowest order.
Examples