get_fft_processor

Function get_fft_processor 

Source
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 (T for real, Complex<T> for complex)