Type Definition nalgebra::base::RowSVector[][src]

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

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

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

Performs the conversion.

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

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

Performs the conversion.