Type Definition nalgebra::base::SVector

source ·
pub type SVector<T, const D: usize> = Matrix<T, Const<D>, U1, ArrayStorage<T, D, 1>>;
Expand description

A statically sized D-dimensional column vector.

Trait Implementations§

source§

impl<T: Scalar, const D: usize> From<[T; D]> for SVector<T, D>

source§

fn from(arr: [T; D]) -> Self

Converts to this type from the input type.