Type Definition nalgebra::base::MatrixN

source · []
pub type MatrixN<T, D> = Matrix<T, D, D, Owned<T, D, D>>;
👎Deprecated: use OMatrix<T, D, D> or SMatrix<T, D, D> instead.
Expand description

An owned matrix column-major matrix with D columns.

Because this is an alias, not all its methods are listed here. See the Matrix type too.