Trait signal_processing::gen::filter::SGolay
source · pub trait SGolay<L, N>: System + Sized{
// Required method
fn sgolay<TS, M>(
order: usize,
numtaps: N,
derivative: M,
scale: TS
) -> Result<L, SGolayError>
where TS: Maybe<Self::Set>,
M: Maybe<usize>;
}
Required Methods§
fn sgolay<TS, M>( order: usize, numtaps: N, derivative: M, scale: TS ) -> Result<L, SGolayError>
Object Safety§
This trait is not object safe.