MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_ifft2

Function af_ifft2

src/api/c/fft.cpp:109–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109af_err af_ifft2(af_array *out, const af_array in, const double norm_factor,
110 const dim_t pad0, const dim_t pad1) {
111 const dim_t pad[2] = {pad0, pad1};
112 return fft(out, in, norm_factor, (pad0 > 0 && pad1 > 0 ? 2 : 0), pad, 2,
113 false);
114}
115
116af_err af_ifft3(af_array *out, const af_array in, const double norm_factor,
117 const dim_t pad0, const dim_t pad1, const dim_t pad2) {

Callers 5

TESTFunction · 0.50
fftTestFunction · 0.50
fft.cppFile · 0.50
fftTestFunction · 0.50
ifft2NormFunction · 0.50

Calls 1

fftFunction · 0.70

Tested by

no test coverage detected