Member of the filter implementation and the polynomials classes.
[c, d] = deconv(a, b)
Computes the deconvolution of the input vectors.
| Name | Description |
| a | Specifies a vector. |
| b | Specifies a vector. |
| Name | Description |
| c | Returns the quotient of a and b. c is a vector. |
| d | Returns the remainder of a and b. d is a vector. |
LabVIEW computes the deconvolution using the following equation: a = conv(b, c)+d. To generate c and d, LabVIEW performs polynomial division of a and b.
A = [1, 2, 3, 4];
B = [1, 1];
[C, D] = deconv(A, B)
E = A-conv(B, C)-D