Trait signal_processing::SplitNumerDenom
source · pub trait SplitNumerDenom: System {
type OutputNum: System<Domain: ComplexFloat<Real = <Self::Domain as ComplexFloat>::Real>>;
type OutputDen: System<Domain: ComplexFloat<Real = <Self::Domain as ComplexFloat>::Real>>;
// Required method
fn split_numer_denom(self) -> (Self::OutputNum, Self::OutputDen);
}