Type Definition na::MatrixMN

source · []
pub type MatrixMN<T, R, C> = Matrix<T, R, C, <DefaultAllocator as Allocator<T, R, C>>::Buffer>;
👎 Deprecated:

use SMatrix for a statically-sized matrix using integer dimensions, or OMatrix for an owned matrix using types as dimensions.

Expand description

An owned matrix column-major matrix with R rows and C columns.

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