applyScale method
Implementation
void applyScale(double scale) {
// For higher order filters it might be helpful
// to spread this factor between all the stages.
if (_biquads.length > 0) {
_biquads[0].applyScale(scale);
}
}
void applyScale(double scale) {
// For higher order filters it might be helpful
// to spread this factor between all the stages.
if (_biquads.length > 0) {
_biquads[0].applyScale(scale);
}
}