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