Signal Processing Toolbox | Help Desk |
conv
Convolution and polynomial multiplication.
c = conv(a,b)
conv(a,b)
convolves vectors a
and b
. The convolution sum is a = [1 2 3]
and b = [4 5 6]
is
c = conv(a,b) c = 4 13 28 27 18This function is part of the MATLAB environment. It is an M-file that uses the
filter
primitive. conv
computes the convolution operation as FIR filtering with an appropriate number of zeros appended to the input.
Filter data with a recursive (IIR) or nonrecursive (FIR) filter. |
|