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
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".