Trait Vector
opensrdk_linear_algebra::matrix
pub trait Vector<T: Number> { fn to_row_vector(self) -> Matrix<T>; fn to_column_vector(self) -> Matrix<T>; }
fn to_row_vector(self) -> Matrix<T>
fn to_column_vector(self) -> Matrix<T>
impl<T: Number> Vector<T> for Vec<T>