Trait basic_dsp_matrix::ToMatrix [] [src]

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

Conversion from a collection of vectors to a matrix.

Associated Types

Required Methods

Create a new matrix from a collection of vectors.

Implementors