Trait signal_processing::gen::matrix::DstMatrix

source ·
pub trait DstMatrix<T, N>: Matrix<T>
where T: Float + FloatConst, N: Maybe<usize>,
{ // Required methods fn dst_i_matrix(n: N) -> Self; fn dst_ii_matrix(n: N) -> Self; fn dst_iii_matrix(n: N) -> Self; fn dst_iv_matrix(n: N) -> Self; }

Required Methods§

source

fn dst_i_matrix(n: N) -> Self

source

fn dst_ii_matrix(n: N) -> Self

source

fn dst_iii_matrix(n: N) -> Self

source

fn dst_iv_matrix(n: N) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> DstMatrix<T, usize> for Array2<T>
where T: Float + FloatConst,

source§

impl<T, const N: usize> DstMatrix<T, ()> for [[T; N]; N]
where T: Float + FloatConst,

source§

fn dst_i_matrix((): ()) -> Self

source§

fn dst_ii_matrix((): ()) -> Self

source§

fn dst_iii_matrix((): ()) -> Self

source§

fn dst_iv_matrix((): ()) -> Self

Implementors§