Trait idsp::ComplexExt[][src]

pub trait ComplexExt<T, U> {
    fn from_angle(angle: T) -> Self;
fn abs_sqr(&self) -> U;
fn log2(&self) -> T;
fn arg(&self) -> T;
fn saturating_add(&self, other: Self) -> Self;
fn saturating_sub(&self, other: Self) -> Self; }
Expand description

Complex extension trait offering DSP (fast, good accuracy) functionality.

Required methods

Implementors