[][src]Trait basic_dsp_matrix::FromMatrix

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 Output

Type of the underlying storage of a matrix.

Loading content...

Required methods

fn get(self) -> (Self::Output, usize)

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

Loading content...

Implementors

impl<V, S, T> FromMatrix<T> for Matrix2xN<V, S, T> where
    T: RealNumber,
    V: Vector<T>,
    S: ToSlice<T>, 
[src]

type Output = [V; 2]

impl<V, S, T> FromMatrix<T> for Matrix3xN<V, S, T> where
    T: RealNumber,
    V: Vector<T>,
    S: ToSlice<T>, 
[src]

type Output = [V; 3]

impl<V, S, T> FromMatrix<T> for Matrix4xN<V, S, T> where
    T: RealNumber,
    V: Vector<T>,
    S: ToSlice<T>, 
[src]

type Output = [V; 4]

impl<V, S, T> FromMatrix<T> for MatrixMxN<V, S, T> where
    T: RealNumber,
    V: Vector<T>,
    S: ToSlice<T>, 
[src]

type Output = Vec<V>

Loading content...