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
I'm working on a project that involves using biquad filtering on an audio signal. Right now I'm doing it by hand manually using map, but I was wondering if it would be helpful to have this be a first-class method on Signal? Perhaps a Signal::biquad(b0, b1, b2, a1, a2) that produces a new Signal?
The text was updated successfully, but these errors were encountered:
I'm working on a project that involves using biquad filtering on an audio signal. Right now I'm doing it by hand manually using
map
, but I was wondering if it would be helpful to have this be a first-class method onSignal
? Perhaps aSignal::biquad(b0, b1, b2, a1, a2)
that produces a newSignal
?The text was updated successfully, but these errors were encountered: