[][src]Trait rustdct::DST3

pub trait DST3<T: DCTnum>: Length + Sync + Send {
    pub fn process_dst3(&self, input: &mut [T], output: &mut [T]);
}

An umbrella trait for algorithms which compute the Discrete Sine Transform Type 3 (DST3)

Required methods

pub fn process_dst3(&self, input: &mut [T], output: &mut [T])[src]

Computes the DST Type 3 on the input buffer and places the result in the output buffer.

This method uses the input buffer as scratch space, so the contents of input should be considered garbage after calling

Loading content...

Implementors

impl<T: DCTnum> DST3<T> for Type2And3ConvertToFFT<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Naive<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3SplitRadix<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Butterfly2<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Butterfly3<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Butterfly4<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Butterfly8<T>[src]

impl<T: DCTnum> DST3<T> for Type2And3Butterfly16<T>[src]

Loading content...