fft_convolve_scan¶
-
pyrost.bin.fft_convolve_scan(double[:, ::1] a1, double[::1] a2)¶ Convolve a set of one-dimensional arrays a1 with a2 using FFT. The output size is the same size as a1.
- Parameters
a1 (numpy.ndarray) – Set of input arrays.
a2 (numpy.ndarray) – Second input array.
- Returns
out – A set of one-dimensional arrays containing the discrete linear convolution of a1 with a2.
- Return type