
numpy.convolve — NumPy v2.2 Manual
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 …
numpy.convolve — NumPy v2.4.dev0 Manual
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 …
numpy.convolve — NumPy v1.21 Manual
Jun 22, 2021 · numpy.convolve ¶ numpy.convolve(a, v, mode='full') [source] ¶ Returns the discrete, linear convolution of two one-dimensional sequences. The convolution operator is …
numpy.convolve — NumPy v1.16 Manual
Feb 18, 2020 · 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 …
Discrete Fourier Transform (numpy.fft) — NumPy v2.2 Manual
The computational efficiency of the FFT means that it can also be a faster way to compute large convolutions, using the property that a convolution in the time domain is equivalent to a point …
numpy.ma.convolve — NumPy v2.2 Manual
numpy.ma.convolve # ma.convolve(a, v, mode='full', propagate_mask=True) [source] # Returns the discrete, linear convolution of two one-dimensional sequences. Parameters: a, varray_like …
Broadcasting — NumPy v2.2 Manual
Broadcasting is a powerful tool for writing short and usually intuitive code that does its computations very efficiently in C. However, there are cases when broadcasting uses …
numpy.sinc — NumPy v2.3.dev0 Manual
numpy.sinc # numpy.sinc(x) [source] # Return the normalized sinc function. The sinc function is equal to sin (π x) / (π x) for any argument x ≠ 0. sinc(0) takes the limit value 1, making sinc not …
numpy.unwrap — NumPy v2.2 Manual
Notes If the discontinuity in p is smaller than period/2, but larger than discont, no unwrapping is done because taking the complement would only make the discontinuity larger. Examples
numpy.fft.fft — NumPy v2.2 Manual
numpy.fft.fft # fft.fft(a, n=None, axis=-1, norm=None, out=None) [source] # Compute the one-dimensional discrete Fourier Transform. This function computes the one-dimensional n -point …