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
In helper_functions.py>power_spectral_density(), the default window_type is 'hanning'. However, this window_type raises a ValueError "unknown window type". Accepted window types are either "hamming" or "hann". The term "hanning" window is a common mistake but it is not the official name and hence not accepted by the welch method.
Solution: Change "hanning" to "hann".
The text was updated successfully, but these errors were encountered:
In helper_functions.py>power_spectral_density(), the default window_type is 'hanning'. However, this window_type raises a ValueError "unknown window type". Accepted window types are either "hamming" or "hann". The term "hanning" window is a common mistake but it is not the official name and hence not accepted by the welch method.
Solution: Change "hanning" to "hann".
The text was updated successfully, but these errors were encountered: