Heavily simplified scipy.signal.spectral module which only depends on NumPy and supports pyFFTW
- Python 3
- NumPy
- Optional: pyFFTW (for fastest FFT calculations with FFTW library)
- Optional: SciPy (for faster FFT calculations with scipy.fftpack library)
SimpleSpectral preferably uses pyfftw for FFT calculations, then scipy.fftpack and numpy.fft as a last resort.
You should always install SciPy or pyFFTW, because numpy.fft has horrible memory usage and is also much slower.
You can use scipy.signal tutorial and reference guide in most cases, but there are some important differences:
- input data is assumed to be complex and two-sided spectrum is always returned (
return_onesided
argument is not implemented) - length of FFT is always same as length of segment (
nfft
argument is not implemented) - functions work always over last axis of array (
axis
argument is not implemented) - if you want to have best FFT performance with pyFFTW, you should create arrays with
empty
,zeros
orones
functions from SimpleSpectral instead of generic versions from NumPy (arrays will be byte aligned for your CPU)
- empty
- zeros
- ones
- fft
- get_window
- get_detrend
- extend_boundaries
- welch
- periodogram
- spectrogram
- stft
- boxcar
- hann
- hamming
- bartlett
- blackman
- kaiser
- tukey
- even
- odd
- constant
- zeros
- constant
Based on code from excellent SciPy project.