pywt
pywt copied to clipboard
PyWavelets - Wavelet Transforms in Python
## Description This PR prepares the transition of the PyWavelets documentation towards interactivity through in-line usage examples, which will be added in follow-up PRs through the integration of JupyterLite notebooks....
https://github.com/PyWavelets/pywt/blob/74b44217a66199fa2e0f8e036955fc00f5cbc21a/pywt/_cwt.py#L126 I am trying to understand the CWT implementation in PyWavelets. As per the definition at a given scale it involves the convolution of the wavefunction at that scale with...
### Overview Warning for when using invalid scale range that includes zero which is easy to accidentally do when setting up scales dynamically and would be nice to fail gracefully....
Closes #700. This PR introduces a flag in the Linux matrix setup to run an editable installation of PyWavelets and run the test suite with `pytest`. I can rebase this...
This PR is in response to issue #676. Basically, I wrote the documentation I wish I had when I started messing with the CWT 😄. Here's a summary of the...
## Description Hi, I'm trying to run the test suite using `pytest` against an editable installation of pyWavelets/`pywt`, and it looks like the `PytestTester` class in the `pywt/_pytesttester.py` module is...
I have an issue regarding `upcoef` and I am not sure whether it is a bug or a misunderstanding on my part. I was trying to reconstruct a signal using...
Hi. I recently implemented a version of the divergence free vector valued wavelet construction (I mainly worked from https://hal.science/file/index/docid/646104/filename/div_freeRegularization.pdf but there are other references as well). I'm curious if you'd...
Not sure folks are interested in this, but pre-commit has been pretty helpful for the other projects I work on. This does introduce some linting noise, but it is ignored...
I am wondering if it is possible to use pyWavelets to generate a dictionary of n-dimensional wavelet filters/kernels? Is this available in some Cython function? E.g. ``` 2d_kernel = pywavelet_generate(**params)...