peroxide::traits::pointer

Trait MatrixPtr

Source
pub trait MatrixPtr {
    // Required methods
    unsafe fn row_ptr(&self, idx: usize) -> Vec<*const f64>;
    unsafe fn col_ptr(&self, idx: usize) -> Vec<*const f64>;
}
Expand description

Pointer for col or row

Required Methods§

Source

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

Source

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

Implementors§