Type Definition lnkit::prelude::VectorN[][src]

type VectorN<T, D> = Matrix<T, D, Const<1_usize>, <DefaultAllocator as Allocator<T, D, Const<1_usize>>>::Buffer>;
👎 Deprecated:

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

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.