pub trait IndexableMatrix<Dtype>: IndexableTensor<Dtype> + MatrixTrait<Dtype>
where Dtype: Copy + Num,
{ // Provided method fn matmul<R>(&self, other: &R) -> Matrix<Dtype> where R: MatrixTrait<Dtype> + IndexableTensor<Dtype> { ... } }

Provided Methods§

source

fn matmul<R>(&self, other: &R) -> Matrix<Dtype>
where R: MatrixTrait<Dtype> + IndexableTensor<Dtype>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Dtype, T> IndexableMatrix<Dtype> for T
where Dtype: Copy + Num, T: MatrixTrait<Dtype> + IndexableTensor<Dtype>,