Trait Vector
opensrdk_linear_algebra::matrix
pub trait Vector<U: Number> { fn to_row_vector(&self) -> Matrix<Standard, U>; fn to_column_vector(&self) -> Matrix<Standard, U>; }
fn to_row_vector(&self) -> Matrix<Standard, U>
fn to_column_vector(&self) -> Matrix<Standard, U>
impl<U: Number> Vector<U> for [U]