pub trait MatrixTrait<Dtype> {
    // Required methods
    fn num_rows(&self) -> Unitless;
    fn num_columns(&self) -> Unitless;
}

Required Methods§

Implementors§

source§

impl<'a, Dtype> MatrixTrait<Dtype> for MatrixView<'a, Dtype>

source§

impl<Dtype> MatrixTrait<Dtype> for Matrix<Dtype>