Trait ndarray::linalg::Dot
[−]
[src]
pub trait Dot<Rhs> {
type Output;
fn dot(&self, rhs: &Rhs) -> Self::Output;
}Matrix Multiplication
For two-dimensional arrays, the dot method computes the matrix multiplication.
Associated Types
type Output
The result of the operation.
For two-dimensional arrays: a rectangular array.