This is documentation for an old release of SciPy (version 0.12.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Convolve two 2-dimensional arrays.
Convolve in1 and in2 with output size determined by mode, and boundary conditions determined by boundary and fillvalue.
Parameters : | in1, in2 : array_like
mode : str {‘full’, ‘valid’, ‘same’}, optional
boundary : str {‘fill’, ‘wrap’, ‘symm’}, optional
fillvalue : scalar, optional
|
---|---|
Returns : | out : ndarray
|