Trait signal_processing::Ellip
source · pub trait Ellip<O>: System + Sized{
// Required method
fn ellip<const F: usize>(
order: O,
passband_ripple: Self::Domain,
stopband_ripple: Self::Domain,
frequencies: [Self::Domain; F],
filter_type: FilterGenType,
plane: FilterGenPlane<Self::Domain>
) -> Result<Self, FilterGenError>
where [(); { _ }]:;
}Required Methods§
fn ellip<const F: usize>( order: O, passband_ripple: Self::Domain, stopband_ripple: Self::Domain, frequencies: [Self::Domain; F], filter_type: FilterGenType, plane: FilterGenPlane<Self::Domain> ) -> Result<Self, FilterGenError>
Object Safety§
This trait is not object safe.