Numerical Python functions written for compatibility with MATLAB commands with the same names. Most numerical Python functions can be found in the NumPy and SciPy libraries. What remains here is code for performing spectral computations and kernel density estimations.
cohere
Coherence (normalized cross spectral density)
csd
Cross spectral density using Welch's average periodogram
detrend
Remove the mean or best fit line from an array
psd
Power spectral density using Welch's average periodogram
specgram
Spectrogram (spectrum over segments of time)
complex_spectrum
Return the complex-valued frequency spectrum of a signal
magnitude_spectrum
Return the magnitude of the frequency spectrum of a signal
angle_spectrum
Return the angle (wrapped phase) of the frequency spectrum of a signal
phase_spectrum
Return the phase (unwrapped angle) of the frequency spectrum of a signal
detrend_mean
Remove the mean from a line.
detrend_linear
Remove the best fit line from a line.
detrend_none
Return the original line.
stride_windows
Get all windows in an array in a memory-efficient manner
Bases: object
Representation of a kernel-density estimate using Gaussian kernels.
Datapoints to estimate from. In case of univariate data this is a 1-D array, otherwise a 2D array with shape (# of dims, # of data).
The method used to calculate the estimator bandwidth. This can be 'scott', 'silverman', a scalar constant or a callable. If a scalar, this will be used directly as kde.factor
. If a callable, it should take a GaussianKDE
instance as only parameter and return a scalar. If None (default), 'scott' is used.
The dataset with which gaussian_kde
was initialized.
Number of dimensions.
Number of datapoints.
The bandwidth factor, obtained from kde.covariance_factor
, with which the covariance matrix is multiplied.
The covariance matrix of dataset, scaled by the calculated bandwidth (kde.factor
).
The inverse of covariance.
kde.evaluate(points) | (ndarray) Evaluate the estimated pdf on a provided set of points. |
kde(points) | (ndarray) Same as kde.evaluate(points) |
Evaluate the estimated pdf on a set of points.
Alternatively, a (# of dimensions,) vector can be passed in and treated as a single point.
The values at each point.
than the dimensionality of the KDE.
Compute the angle of the frequency spectrum (wrapped phase spectrum) of x. Data is padded to a length of pad_to and the windowing function window is applied to the signal.
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to the length of the input signal (i.e. no padding).
The angle of the frequency spectrum (wrapped phase spectrum).
The frequencies corresponding to the elements in spectrum.
See also
psd
Returns the power spectral density.
complex_spectrum
Returns the complex-valued frequency spectrum.
magnitude_spectrum
Returns the absolute value of the complex_spectrum
.
angle_spectrum
Returns the angle of the complex_spectrum
.
phase_spectrum
Returns the phase (unwrapped angle) of the complex_spectrum
.
specgram
Can return the complex spectrum of segments within the signal.
The coherence between x and y. Coherence is the normalized cross spectral density:
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. This can be different from NFFT, which specifies the number of data points used. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to NFFT
The number of data points used in each block for the FFT. A power 2 is most efficient. This should NOT be used to get zero padding, or the scaling of the result will be incorrect; use pad_to for this instead.
The function applied to each segment before fft-ing, designed to remove the mean or linear trend. Unlike in MATLAB, where the detrend parameter is a vector, in Matplotlib it is a function. The mlab
module defines detrend_none
, detrend_mean
, and detrend_linear
, but you can use a custom function as well. You can also use a string to choose one of the functions: 'none' calls detrend_none
. 'mean' calls detrend_mean
. 'linear' calls detrend_linear
.
Whether the resulting density values should be scaled by the scaling frequency, which gives density in units of Hz^-1. This allows for integration over the returned frequency values. The default is True for MATLAB compatibility.
The number of points of overlap between segments.
The coherence vector.
The frequencies for the elements in Cxy.
Compute the complex-valued frequency spectrum of x. Data is padded to a length of pad_to and the windowing function window is applied to the signal.
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to the length of the input signal (i.e. no padding).
The complex-valued frequency spectrum.
The frequencies corresponding to the elements in spectrum.
See also
psd
Returns the power spectral density.
complex_spectrum
Returns the complex-valued frequency spectrum.
magnitude_spectrum
Returns the absolute value of the complex_spectrum
.
angle_spectrum
Returns the angle of the complex_spectrum
.
phase_spectrum
Returns the phase (unwrapped angle) of the complex_spectrum
.
specgram
Can return the complex spectrum of segments within the signal.
Compute the cross-spectral density.
The cross spectral density \(P_{xy}\) by Welch's average periodogram method. The vectors x and y are divided into NFFT length segments. Each segment is detrended by function detrend and windowed by function window. noverlap gives the length of the overlap between segments. The product of the direct FFTs of x and y are averaged over each segment to compute \(P_{xy}\), with a scaling to correct for power loss due to windowing.
If len(x) < NFFT or len(y) < NFFT, they will be zero padded to NFFT.
Arrays or sequences containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. This can be different from NFFT, which specifies the number of data points used. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to NFFT
The number of data points used in each block for the FFT. A power 2 is most efficient. This should NOT be used to get zero padding, or the scaling of the result will be incorrect; use pad_to for this instead.
The function applied to each segment before fft-ing, designed to remove the mean or linear trend. Unlike in MATLAB, where the detrend parameter is a vector, in Matplotlib it is a function. The mlab
module defines detrend_none
, detrend_mean
, and detrend_linear
, but you can use a custom function as well. You can also use a string to choose one of the functions: 'none' calls detrend_none
. 'mean' calls detrend_mean
. 'linear' calls detrend_linear
.
Whether the resulting density values should be scaled by the scaling frequency, which gives density in units of Hz^-1. This allows for integration over the returned frequency values. The default is True for MATLAB compatibility.
The number of points of overlap between segments.
The values for the cross spectrum \(P_{xy}\) before scaling (real valued)
The frequencies corresponding to the elements in Pxy
See also
psd
equivalent to setting y = x
.
Bendat & Piersol -- Random Data: Analysis and Measurement Procedures, John Wiley & Sons (1986)
Return x with its trend removed.
Array or sequence containing the data.
The detrending algorithm to use. 'default', 'mean', and 'constant' are the same as detrend_mean
. 'linear' is the same as detrend_linear
. 'none' is the same as detrend_none
. The default is 'mean'. See the corresponding functions for more details regarding the algorithms. Can also be a function that carries out the detrend operation.
The axis along which to do the detrending.
See also
detrend_mean
Implementation of the 'mean' algorithm.
detrend_linear
Implementation of the 'linear' algorithm.
detrend_none
Implementation of the 'none' algorithm.
Return x minus best fit line; 'linear' detrending.
Array or sequence containing the data
See also
detrend_mean
Another detrend algorithm.
detrend_none
Another detrend algorithm.
detrend
A wrapper around all the detrend algorithms.
Return x minus the mean(x).
Array or sequence containing the data Can have any dimensionality
The axis along which to take the mean. See numpy.mean for a description of this argument.
See also
detrend_linear
Another detrend algorithm.
detrend_none
Another detrend algorithm.
detrend
A wrapper around all the detrend algorithms.
Return x: no detrending.
An object containing the data
This parameter is ignored. It is included for compatibility with detrend_mean
See also
detrend_mean
Another detrend algorithm.
detrend_linear
Another detrend algorithm.
detrend
A wrapper around all the detrend algorithms.
Compute the magnitude (absolute value) of the frequency spectrum of x. Data is padded to a length of pad_to and the windowing function window is applied to the signal.
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to the length of the input signal (i.e. no padding).
The magnitude (absolute value) of the frequency spectrum.
The frequencies corresponding to the elements in spectrum.
See also
psd
Returns the power spectral density.
complex_spectrum
Returns the complex-valued frequency spectrum.
magnitude_spectrum
Returns the absolute value of the complex_spectrum
.
angle_spectrum
Returns the angle of the complex_spectrum
.
phase_spectrum
Returns the phase (unwrapped angle) of the complex_spectrum
.
specgram
Can return the complex spectrum of segments within the signal.
Compute the phase of the frequency spectrum (unwrapped phase spectrum) of x. Data is padded to a length of pad_to and the windowing function window is applied to the signal.
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to the length of the input signal (i.e. no padding).
The phase of the frequency spectrum (unwrapped phase spectrum).
The frequencies corresponding to the elements in spectrum.
See also
psd
Returns the power spectral density.
complex_spectrum
Returns the complex-valued frequency spectrum.
magnitude_spectrum
Returns the absolute value of the complex_spectrum
.
angle_spectrum
Returns the angle of the complex_spectrum
.
phase_spectrum
Returns the phase (unwrapped angle) of the complex_spectrum
.
specgram
Can return the complex spectrum of segments within the signal.
Compute the power spectral density.
The power spectral density \(P_{xx}\) by Welch's average periodogram method. The vector x is divided into NFFT length segments. Each segment is detrended by function detrend and windowed by function window. noverlap gives the length of the overlap between segments. The \(|\mathrm{fft}(i)|^2\) of each segment \(i\) are averaged to compute \(P_{xx}\).
If len(x) < NFFT, it will be zero padded to NFFT.
Array or sequence containing the data
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. This can be different from NFFT, which specifies the number of data points used. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to NFFT
The number of data points used in each block for the FFT. A power 2 is most efficient. This should NOT be used to get zero padding, or the scaling of the result will be incorrect; use pad_to for this instead.
The function applied to each segment before fft-ing, designed to remove the mean or linear trend. Unlike in MATLAB, where the detrend parameter is a vector, in Matplotlib it is a function. The mlab
module defines detrend_none
, detrend_mean
, and detrend_linear
, but you can use a custom function as well. You can also use a string to choose one of the functions: 'none' calls detrend_none
. 'mean' calls detrend_mean
. 'linear' calls detrend_linear
.
Whether the resulting density values should be scaled by the scaling frequency, which gives density in units of Hz^-1. This allows for integration over the returned frequency values. The default is True for MATLAB compatibility.
The number of points of overlap between segments.
The values for the power spectrum \(P_{xx}\) (real valued)
The frequencies corresponding to the elements in Pxx
See also
specgram
specgram
differs in the default overlap; in not returning the mean of the segment periodograms; and in returning the times of the segments.
magnitude_spectrum
returns the magnitude spectrum.
csd
returns the spectral density between two signals.
Bendat & Piersol -- Random Data: Analysis and Measurement Procedures, John Wiley & Sons (1986)
Compute a spectrogram.
Compute and plot a spectrogram of data in x. Data are split into NFFT length segments and the spectrum of each section is computed. The windowing function window is applied to each segment, and the amount of overlap of each segment is specified with noverlap.
1-D array or sequence.
The sampling frequency (samples per time unit). It is used to calculate the Fourier frequencies, freqs, in cycles per time unit.
window_hanning
A function or a vector of length NFFT. To create window vectors see window_hanning
, window_none
, numpy.blackman
, numpy.hamming
, numpy.bartlett
, scipy.signal
, scipy.signal.get_window
, etc. If a function is passed as the argument, it must take a data segment as an argument and return the windowed version of the segment.
Which sides of the spectrum to return. 'default' is one-sided for real data and two-sided for complex data. 'onesided' forces the return of a one-sided spectrum, while 'twosided' forces two-sided.
The number of points to which the data segment is padded when performing the FFT. This can be different from NFFT, which specifies the number of data points used. While not increasing the actual resolution of the spectrum (the minimum distance between resolvable peaks), this can give more points in the plot, allowing for more detail. This corresponds to the n parameter in the call to fft(). The default is None, which sets pad_to equal to NFFT
The number of data points used in each block for the FFT. A power 2 is most efficient. This should NOT be used to get zero padding, or the scaling of the result will be incorrect; use pad_to for this instead.
The function applied to each segment before fft-ing, designed to remove the mean or linear trend. Unlike in MATLAB, where the detrend parameter is a vector, in Matplotlib it is a function. The mlab
module defines detrend_none
, detrend_mean
, and detrend_linear
, but you can use a custom function as well. You can also use a string to choose one of the functions: 'none' calls detrend_none
. 'mean' calls detrend_mean
. 'linear' calls detrend_linear
.
Whether the resulting density values should be scaled by the scaling frequency, which gives density in units of Hz^-1. This allows for integration over the returned frequency values. The default is True for MATLAB compatibility.
The number of points of overlap between blocks.
Returns the power spectral density.
Returns the complex-valued frequency spectrum.
Returns the magnitude spectrum.
Returns the phase spectrum without unwrapping.
Returns the phase spectrum with unwrapping.
2D array, columns are the periodograms of successive segments.
1-D array, frequencies corresponding to the rows in spectrum.
1-D array, the times corresponding to midpoints of segments (i.e the columns in spectrum).
See also
psd
differs in the overlap and in the return values.
complex_spectrum
similar, but with complex valued frequencies.
magnitude_spectrum
similar single segment when mode is 'magnitude'.
angle_spectrum
similar to single segment when mode is 'angle'.
phase_spectrum
similar to single segment when mode is 'phase'.
detrend and scale_by_freq only apply when mode is set to 'psd'.
Get all windows of x with length n as a single array, using strides to avoid data duplication.
Warning
It is not safe to write to the output array. Multiple elements may point to the same piece of memory, so modifying one value may change others.
Array or sequence containing the data.
The number of data points in each window.
The overlap between adjacent windows.
The axis along which the windows will run.
stackoverflow: Rolling window for 1D arrays in Numpy? stackoverflow: Using strides for an efficient moving average filter
Return x times the hanning window of len(x).
See also
window_none
Another window algorithm.
No window function; simply return x.
See also
window_hanning
Another window algorithm.
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/mlab_api.html