Type Definition na::MatrixN

source · []
pub type MatrixN<T, D> = Matrix<T, D, D, <DefaultAllocator as Allocator<T, D, D>>::Buffer>;
👎 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.