Trait signal_processing::ZfTrans
source · pub trait ZfTrans<const W: usize>: System{
type Output;
// Required method
fn zftrans<FS>(
self,
wo: <Self::Domain as ComplexFloat>::Real,
wt: [<Self::Domain as ComplexFloat>::Real; W],
sampling_frequency: FS,
stop: bool
) -> Result<Self::Output, ZfTransError>
where FS: Maybe<<Self::Domain as ComplexFloat>::Real>;
}
Required Associated Types§
Required Methods§
fn zftrans<FS>( self, wo: <Self::Domain as ComplexFloat>::Real, wt: [<Self::Domain as ComplexFloat>::Real; W], sampling_frequency: FS, stop: bool ) -> Result<Self::Output, ZfTransError>
Object Safety§
This trait is not object safe.