[][src]Trait peroxide::traits::mutable::MutMatrix

pub trait MutMatrix {
    pub unsafe fn col_mut(&mut self, idx: usize) -> Vec<*mut f64>;
pub unsafe fn row_mut(&mut self, idx: usize) -> Vec<*mut f64>;
pub unsafe fn swap(&mut self, idx1: usize, idx2: usize, shape: Shape);
pub unsafe fn swap_with_perm(
        &mut self,
        p: &Vec<(usize, usize)>,
        shape: Shape
    ); }

Required methods

pub unsafe fn col_mut(&mut self, idx: usize) -> Vec<*mut f64>[src]

pub unsafe fn row_mut(&mut self, idx: usize) -> Vec<*mut f64>[src]

pub unsafe fn swap(&mut self, idx1: usize, idx2: usize, shape: Shape)[src]

pub unsafe fn swap_with_perm(&mut self, p: &Vec<(usize, usize)>, shape: Shape)[src]

Loading content...

Implementors

impl MutMatrix for Matrix[src]

Loading content...