We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pycwt/pycwt/wavelet.py
Lines 252 to 257 in 1bef44e
According to equation 16 from Torrence and Compo (1998) this code should look like this
def pk(k, a, N): return (1 - a ** 2) / (1 + a ** 2 - 2 * a * np.cos(2 * np.pi * k / N)) fft_theor = pk(freq, alpha, 1)
This bug leads to different results of usage of significance function with signal and its variance.
significance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pycwt/pycwt/wavelet.py
Lines 252 to 257 in 1bef44e
According to equation 16 from Torrence and Compo (1998) this code should look like this
This bug leads to different results of usage of
significance
function with signal and its variance.The text was updated successfully, but these errors were encountered: