Tags for questions about convolution, including the Mathematica functions Convolve, DiscreteConvolve, ListConvolve, DirichletConvolve, ImageConvolve, and convolutions using Fourier, FourierTransform, or LaplaceTransform.
5
votes
3answers
593 views
Discrete Convolution
Ask to compute the convolution of 2 lists, I managed to do so, with what I feel is rather heavy :
Let my 2 lists be :
a = {1,2,3,4}
b = {1,1,1,1,1,1};
The below function adds 0s on each part of ...