Trait basic_dsp_matrix::FromMatrix [] [src]

pub trait FromMatrix<T> where
    T: RealNumber
{ type Output; fn get(self) -> (Self::Output, usize); }

Retrieves the underlying storage from a matrix.

Associated Types

Type of the underlying storage of a matrix.

Required Methods

Gets the underlying matrix and the number of elements which contain valid.

Implementors