I want to smooth a one-dimensional oscillating function by convolving it with another function that I'll call the screening function. This screening function should have a trapezoidal form and go to zero for Abs[x] > L.
Can this be accomplished by performing a Fourier transform of the two functions, multiplying them, and then taking the inverse Fourier transform to get the convolution?
In particular, I am confused by ListConvolve, and whether I should do a cyclic or linear convolution, which is why I was trying to approach it via Fourier transforms.
ListConvolvecan perform both linear and cyclic convolution, check the documentation. You can perform a linear convolution as multiplication in the Fourier (DFT) domain, as long as the DFTs lengths are larger than the length of the final sequence. Check the answer of this post for implementation. – Stelios Jul 06 '15 at 21:12