WDM wavelet transform your time/freq series!


License
MIT
Install
pip install pywavelet==0.2.4

Documentation

pywavelet

https://coveralls.io/repos/github/avivajpeyi/pywavelet/badge.svg?branch=main&kill_cache=1

WDM Wavelet transform

Quickstart

pywavelet is available on PyPI and can be installed with pip.

$ pip install pywavelet

Note: We have transforms availible in numpy, JAX and Cupy.

For developers

First set up a conda environment with python 3.10

$ mamba create -n pywavelet python=3.10
$ CONDA_OVERRIDE_CUDA=12.4  mamba install "jaxlib=*=*cuda*" jax -c conda-forge
$ CONDA_OVERRIDE_CUDA=12.4  conda install -c conda-forge cupy-core
$ pip install -e ".[dev]"
$ pre-commit install

Test code

Locate directory /tests from root directory. run

$ pytest .

Hopefully everything should run fine.