CopyMat

Trait CopyMat 

Source
pub trait CopyMat<T> {
    // Required methods
    fn copy_into(&self, dst: &Ref<DMatrix<T>>, offset: usize) -> usize;
    fn copy_into_v(&self, dst: &Ref<DVector<T>>, offset: usize) -> usize;
    fn copy_into_r(&self, dst: &Ref<RowDVector<T>>, offset: usize) -> usize;
    fn copy_into_row_major(&self, dst: &Ref<DMatrix<T>>, offset: usize) -> usize;
    fn addr(&self) -> usize;
    fn compile_const_mat(&self, ctx: &mut CompileCtx) -> MResult<u32>;
}

Required Methods§

Source

fn copy_into(&self, dst: &Ref<DMatrix<T>>, offset: usize) -> usize

Source

fn copy_into_v(&self, dst: &Ref<DVector<T>>, offset: usize) -> usize

Source

fn copy_into_r(&self, dst: &Ref<RowDVector<T>>, offset: usize) -> usize

Source

fn copy_into_row_major(&self, dst: &Ref<DMatrix<T>>, offset: usize) -> usize

Source

fn addr(&self) -> usize

Source

fn compile_const_mat(&self, ctx: &mut CompileCtx) -> MResult<u32>

Implementors§