| 45 | } |
| 46 | |
| 47 | array fft3(const array& in, const dim_t odim0, const dim_t odim1, |
| 48 | const dim_t odim2) { |
| 49 | return fft3Norm(in, 1.0, odim0, odim1, odim2); |
| 50 | } |
| 51 | |
| 52 | // NOLINTNEXTLINE(performance-unnecessary-value-param) |
| 53 | array dft(const array& in, const double norm_factor, const dim4 outDims) { |
no test coverage detected