conv
Convolution of two vectors.
Syntax
R = conv(x,y)
Inputs
- x,y
- The vectors to convolve.
Outputs
- R
- The convolution vector.
Example
R = conv([1,3,7,2,2],[2,8,1,2,5])
R = [Matrix] 1 x 9
2 14 39 65 38 47 41 14 10
Comments
Only the full output is currently supported. A flag to return only the central part of the convolution will be added later.