| 158 | } |
| 159 | |
| 160 | af_err af_fft2_inplace(af_array in, const double norm_factor) { |
| 161 | return fft_inplace(in, norm_factor, 2, true); |
| 162 | } |
| 163 | |
| 164 | af_err af_fft3_inplace(af_array in, const double norm_factor) { |
| 165 | return fft_inplace(in, norm_factor, 3, true); |
no test coverage detected