pub trait ToMatrix<V, T>where
    V: Vector<T>,
    T: RealNumber,
{ type Output: Matrix<V, T>; fn to_mat(self) -> Self::Output; }
Expand description

Conversion from a collection of vectors to a matrix.

Required Associated Types

Required Methods

Create a new matrix from a collection of vectors.

Implementations on Foreign Types

Implementors