| Signal Processing Toolbox | Search  Help Desk |
| conv | Examples See Also |
Convolution and polynomial multiplication.
Syntax
c = conv(a,b)
Description
conv(a,b)
convolves vectors a and b. The convolution sum is
conv function is part of the standard MATLAB language.
Example
The convolution ofa = [1 2 3] and b = [4 5 6] is
c = conv(a,b) c = 4 13 28 27 18
Algorithm
Theconv function 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.
See Also
conv2 |
Two-dimensional convolution. |
convmtx |
Convolution matrix. |
convn |
N-dimensional convolution (see the online MATLAB Function Reference). |
deconv |
Deconvolution and polynomial division. |
filter |
Filter data with a recursive (IIR) or nonrecursive (FIR) filter. |
residuez |
z-transform partial fraction expansion. |
xcorr |
Cross-correlation function estimate. |