Trait basic_dsp_matrix::FromMatrix

source ·
pub trait FromMatrix<T>
where T: RealNumber,
{ type Output; // Required method fn get(self) -> (Self::Output, usize); }
Expand description

Retrieves the underlying storage from a matrix.

Required Associated Types§

source

type Output

Type of the underlying storage of a matrix.

Required Methods§

source

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

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

Implementors§

source§

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

source§

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

source§

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

source§

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

§

type Output = Vec<V>