Trait nalgebra::Matrix [] [src]

pub trait Matrix<N, R, C: Mul<Self, Output=R>>: Sized + Row<R> + Column<C> + Mul<R, Output=C> + Index<(usize, usize), Output=N> { }

Trait of matrices.

A matrix has rows and columns and are able to multiply them.

Implementors