Trait Vector

Source
pub trait Vector<T>
where T: Number,
{ // Required methods fn row_mat(self) -> Matrix<T>; fn col_mat(self) -> Matrix<T>; }

Required Methods§

Source

fn row_mat(self) -> Matrix<T>

Source

fn col_mat(self) -> Matrix<T>

Implementations on Foreign Types§

Source§

impl<T> Vector<T> for Vec<T>
where T: Number,

Source§

fn row_mat(self) -> Matrix<T>

Source§

fn col_mat(self) -> Matrix<T>

Implementors§