ZnNormalizeInplace

Trait ZnNormalizeInplace 

Source
pub trait ZnNormalizeInplace<B: Backend> {
    // Required method
    fn zn_normalize_inplace<R>(
        &self,
        n: usize,
        basek: usize,
        res: &mut R,
        res_col: usize,
        scratch: &mut Scratch<B>,
    )
       where R: ZnToMut;
}

Required Methods§

Source

fn zn_normalize_inplace<R>( &self, n: usize, basek: usize, res: &mut R, res_col: usize, scratch: &mut Scratch<B>, )
where R: ZnToMut,

Normalizes the selected column of a.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§