pycwt icon indicating copy to clipboard operation
pycwt copied to clipboard

A Python module for continuous wavelet spectral analysis. It includes a collection of routines for wavelet transform and statistical analysis via FFT algorithm. In addition, the module also includes c...

Results 13 pycwt issues
Sort by recently updated
recently updated
newest added

https://github.com/regeirk/pycwt/blob/1bef44e7673ea5109f569e77195e70ce99016b26/pycwt/wavelet.py#L252-L257 According to equation 16 from Torrence and Compo (1998) this code should look like this ```python def pk(k, a, N): return (1 - a ** 2) / (1 +...

I see the power spectrum correction mentioned in the documentation, but when I add the following code, the result is not consistent with the original result, can you please see...

I think there is an error for the parameter 'wavelet' in the function 'wct_significance'. The docstring says it should be an instance of a class, but a string is given....