I have a 2D array input buffer. so, what is the correct way to implement the rfft and cfft functions?float fftIn[16][512] is my input. So, I applied for a loop like below:arm_rfft_fast_init_f32(&fftHandler, 512); for(int d =0; d<16; d++){arm_rfft_fas...