crate::ix!();/// This trait defines a function for calculating
/// the coefficients of a notch filter:
///pubtraitBiquadCoeffNotch{/// This function takes an angular frequency
/// (`omega`) and a quality factor
/// (`quality_factor`) and sets the filter
/// coefficients to produce a notch filter
/// with
///fnset_notch_filter_coefficients(&mutself, omega:f64, quality_factor:f64);}