pub trait MatrixDual<O>: NDArray + 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