deconvΒΆ

The deconv performs the deconvolution of vector u and vector v.

q = deconv(v, u)

Return Value

q is the deconvolution of u and v.

Parameters

u

u is a real vector.

v

v is a real vector.

Example

u = [10,20,30,40];
v = [1,2,3];
c = conv(u, v);
c
    10.0000    40.0000   100.0000   160.0000   170.0000   120.0000
v2 = deconv(c, u); // restore the signal
v2
    1.0000     2.0000     3.0000

id-779775