Trait MatrixDual

Source
pub trait MatrixDual<O>: NDArray + Debug
where O: NDArray<DType = Self::DType> + Debug,
{ type Output: Access<Self::DType>; // Required method fn matmul( self, other: O, ) -> Result<Array<Self::DType, Self::Output, Self::Platform>, Error>; }
Expand description

Matrix dual operations

Required Associated Types§

Required Methods§

Source

fn matmul( self, other: O, ) -> Result<Array<Self::DType, Self::Output, Self::Platform>, Error>

Construct an operation to multiply this matrix or batch of matrices with the other.

Implementors§