Trait signal_processing::gen::filter::Cheby1
source · pub trait Cheby1<O>: System + Sized{
// Required method
fn cheby1<const F: usize>(
order: O,
ripple: <Self::Set as ComplexFloat>::Real,
frequencies: [<Self::Set as ComplexFloat>::Real; F],
filter_type: FilterGenType,
plane: FilterGenPlane<<Self::Set as ComplexFloat>::Real>
) -> Result<Self, FilterGenError>
where [(); { _ }]:;
}
Required Methods§
fn cheby1<const F: usize>( order: O, ripple: <Self::Set as ComplexFloat>::Real, frequencies: [<Self::Set as ComplexFloat>::Real; F], filter_type: FilterGenType, plane: FilterGenPlane<<Self::Set as ComplexFloat>::Real> ) -> Result<Self, FilterGenError>
Object Safety§
This trait is not object safe.