Tagged Questions
5
votes
3answers
632 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 ...