pub fn get_fft_processor<T: FftNum, InElem: GetProcessor<T, InElem>>() -> impl Processor<T, InElem>Expand description
Returns a processor instance for the given input element type.
This function is a convenience wrapper around GetProcessor::get_processor().
ยงType Parameters
T: The FFT numeric type (typically f32 or f64)InElem: The input element type (Tfor real,Complex<T>for complex)