numpy.convolve()
numpy.convolve
-
numpy.convolve(a, v, mode='full')
[source] -
Returns the discrete, linear convolution of two one-dimensional sequences.
The convolution operator is often seen in signal processing, where it models the effect of a linear time-invariant system on a signal [R17]. In probability theory, the sum of two independent random variables is distributed according to the convolution of their individual distributions.
If
登录查看完整内容v
is longer thana
, the arrays are swapped before computation.