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
{{ message }}
This repository was archived by the owner on Feb 7, 2024. It is now read-only.
Example code:
An error raised
ValueError: Digital filter critical frequencies must be 0 < Wn < 1, which happens at the last frequency bandpython-acoustics/acoustics/room.py
Lines 169 to 171 in 3147c6f
octave_high()gives the largest element ofhighis 22627.41699797, which is out of range of Nyquist at 44100Hz. That results in theValueErrorinpython-acoustics/acoustics/room.py
Line 198 in 3147c6f
It may be better to check the frequency range in
octave_highandthird_highor just after they are called.