Skip to content
New issue

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

MAINT: remove optional dependence on SciPy for FFT operations #791

Merged
merged 9 commits into from
Feb 3, 2025
Prev Previous commit
STY: Remove fftmodule variable, use np.fft
agriyakhetarpal committed Feb 1, 2025
commit 7a692e78bfe10397c08cd011000373aa670d96d6
8 changes: 3 additions & 5 deletions pywt/_cwt.py
Original file line number Diff line number Diff line change
@@ -14,8 +14,6 @@

import numpy as np

fftmodule = np.fft


def next_fast_len(n):
"""Round up size to the nearest power of two.
@@ -169,10 +167,10 @@ def cwt(data, scales, wavelet, sampling_period=1., method='conv', axis=-1):
)
if size_scale != size_scale0:
# Must recompute fft_data when the padding size changes.
fft_data = fftmodule.fft(data, size_scale, axis=-1)
fft_data = np.fft.fft(data, size_scale, axis=-1)
size_scale0 = size_scale
fft_wav = fftmodule.fft(int_psi_scale, size_scale, axis=-1)
conv = fftmodule.ifft(fft_wav * fft_data, axis=-1)
fft_wav = np.fft.fft(int_psi_scale, size_scale, axis=-1)
conv = np.fft.ifft(fft_wav * fft_data, axis=-1)
conv = conv[..., :data.shape[-1] + int_psi_scale.size - 1]

coef = - np.sqrt(scale) * np.diff(conv, axis=-1)