| 162 | } |
| 163 | |
| 164 | af_err af_fft3_inplace(af_array in, const double norm_factor) { |
| 165 | return fft_inplace(in, norm_factor, 3, true); |
| 166 | } |
| 167 | |
| 168 | af_err af_ifft_inplace(af_array in, const double norm_factor) { |
| 169 | return fft_inplace(in, norm_factor, 1, false); |
no test coverage detected