Trait signal_processing::SfTrans
source · pub trait SfTrans<const W: usize>: System{
type Output: System<Domain = Self::Domain>;
// Required method
fn sftrans(
self,
wo: <Self::Domain as ComplexFloat>::Real,
w: [<Self::Domain as ComplexFloat>::Real; W],
stop: bool
) -> Result<Self::Output, SfTransError>;
}