You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's easy enough to check in the filter method of MorletWaveletFilter that the combination of width, freqs, and length of eeg epoch is valid.
To be explicit, we want: 2 * width * 1 / min(freqs) <= len(timeseries.time) / samplerate
in words, the length of time must be at least twice the width of a wavelet at the lowest frequency.
The text was updated successfully, but these errors were encountered:
It's easy enough to check in the filter method of MorletWaveletFilter that the combination of width, freqs, and length of eeg epoch is valid.
To be explicit, we want:
2 * width * 1 / min(freqs) <= len(timeseries.time) / samplerate
in words, the length of time must be at least twice the width of a wavelet at the lowest frequency.
The text was updated successfully, but these errors were encountered: