pytutorial/pywavelet/README.md
David Rotermund 8862b3cf44
Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-01 16:00:21 +01:00

861 B

PyWavelets -- Wavelet Transforms in Python

The goal

How do we do wavelet transforms under Python?

Questions to David Rotermund

You might want to read: A Practical Guide to Wavelet Analysis -> PDF

pip install PyWavelets

Which continuous mother wavelets are available?

import pywt

wavelet_list = pywt.wavelist(kind="continuous")
print(wavelet_list)
['cgau1', 'cgau2', 'cgau3', 'cgau4', 'cgau5', 'cgau6', 'cgau7', 'cgau8', 'cmor', 'fbsp', 'gaus1', 'gaus2', 'gaus3', 'gaus4', 'gaus5', 'gaus6', 'gaus7', 'gaus8', 'mexh', 'morl', 'shan']