Implement a smoothing IIR filter with mirror-symmetric boundary conditions using a cascade of first-order sections. Perform a Wiener filter on an N-dimensional array. Perform a median filter on an N-dimensional array. Smoothing spline (cubic) filtering of a rank-2 array. Gaussian approximation to B-spline basis function of order n.Ĭompute cubic spline coefficients for rank-1 array.Ĭompute quadratic spline coefficients for rank-1 array.Ĭoefficients for 2-D cubic (3rd order) B-spline.Ĭoefficients for 2-D quadratic (2nd order) B-spline:Įvaluate a cubic spline at the new set of points.Įvaluate a quadratic spline at the new set of points. Signal processing ( scipy.signal) # Convolution #Ĭross-correlate two N-dimensional arrays.Ĭonvolve two N-dimensional arrays using FFT.Ĭonvolve two N-dimensional arrays using the overlap-add method.Ĭonvolve2d(in1, in2)Ĭorrelate2d(in1, in2)Ĭross-correlate two 2-dimensional arrays.Ĭonvolve with a 2-D separable FIR filter.Ĭhoose_conv_method(in1, in2)įind the fastest convolution/correlation method.Ĭorrelation_lags(in1_len, in2_len)Ĭalculates the lag / displacement indices array for 1D cross-correlation.
Statistical functions for masked arrays ( K-means clustering and vector quantization (