[][src]Trait peroxide::operation::mut_ops::MutMatrix

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

Required methods

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

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

unsafe fn swap(&mut self, idx1: usize, idx2: usize, shape: Shape)

Loading content...

Implementors

impl MutMatrix for Matrix[src]

Loading content...