pywt icon indicating copy to clipboard operation
pywt copied to clipboard

Question about CWT

Open igtrnt opened this issue 1 year ago • 0 comments

In CWT code, the wavelet is first integrated: int_psi, x = integrate_wavelet(wavelet, precision=precision)

then convolved: conv[n, :] = np.convolve(data[n], int_psi_scale)

and then finite difference of convolution is taken: coef = - np.sqrt(scale) * np.diff(conv, axis=-1)

which is equivalent to not integrating the wavelet in the first place.

Why is it done in such a way?

igtrnt avatar Oct 30 '24 18:10 igtrnt