Trait lowdim::MatrixOps [−][src]
pub trait MatrixOps<S, RHS = Self, Output = Self> where
Self: Sized,
Self: Mul<RHS, Output = Output>, { }Expand description
Required arithmetic operations for matrices.
Must be in a separate trait to allow Self to be a reference type
and the output the base type.