pub type RowVector<T, const N: usize> = Matrix<T, 1, N>;
Expand description
A matrix with one row and N
columns.
Aliased Type§
struct RowVector<T, const N: usize> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<T> From<(T, T, T, T)> for RowVector<T, 4>
impl<T> From<(T, T, T, T)> for RowVector<T, 4>
Source§fn from((x, y, z, w): (T, T, T, T)) -> Self
fn from((x, y, z, w): (T, T, T, T)) -> Self
Converts to this type from the input type.
Source§impl<T> From<(T, T, T, T, T)> for RowVector<T, 5>
impl<T> From<(T, T, T, T, T)> for RowVector<T, 5>
Source§fn from((x, y, z, w, a): (T, T, T, T, T)) -> Self
fn from((x, y, z, w, a): (T, T, T, T, T)) -> Self
Converts to this type from the input type.
Source§impl<T> From<(T, T, T, T, T, T)> for RowVector<T, 6>
impl<T> From<(T, T, T, T, T, T)> for RowVector<T, 6>
Source§fn from((x, y, z, w, a, b): (T, T, T, T, T, T)) -> Self
fn from((x, y, z, w, a, b): (T, T, T, T, T, T)) -> Self
Converts to this type from the input type.