| 139 | array idft(const array& in) { return idft(in, 1.0, dim4(0, 0, 0, 0)); } |
| 140 | |
| 141 | void fftInPlace(array& in, const double norm_factor) { |
| 142 | AF_THROW(af_fft_inplace(in.get(), norm_factor)); |
| 143 | } |
| 144 | |
| 145 | void fft2InPlace(array& in, const double norm_factor) { |
| 146 | AF_THROW(af_fft2_inplace(in.get(), norm_factor)); |
no test coverage detected