R2CFftExecutor

Trait R2CFftExecutor 

Source
pub trait R2CFftExecutor<T> {
    // Required methods
    fn execute(
        &self,
        input: &[T],
        output: &mut [Complex<T>],
    ) -> Result<(), ZaftError>;
    fn real_length(&self) -> usize;
    fn complex_length(&self) -> usize;
}

Required Methods§

Source

fn execute( &self, input: &[T], output: &mut [Complex<T>], ) -> Result<(), ZaftError>

Source

fn real_length(&self) -> usize

Source

fn complex_length(&self) -> usize

Implementors§