Type Definition nalgebra::base::RowSVector

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

A statically sized D-dimensional row vector.

Trait Implementations§

source§

impl<T: Scalar, const D: usize> From<[T; D]> for RowSVector<T, D>where Const<D>: IsNotStaticOne,

source§

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

Converts to this type from the input type.
source§

impl<T: Scalar, const D: usize> Into<[T; D]> for RowSVector<T, D>where Const<D>: IsNotStaticOne,

source§

fn into(self) -> [T; D]

Converts this type into the (usually inferred) input type.