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

Function ifft2

src/api/cpp/fft.cpp:99–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99array ifft2(const array& in, const dim_t odim0, const dim_t odim1) {
100 const dim4 dims = in.dims();
101 dim_t dim0 = odim0 == 0 ? dims[0] : odim0;
102 dim_t dim1 = odim1 == 0 ? dims[1] : odim1;
103 double norm_factor = 1.0 / static_cast<double>(dim0 * dim1);
104 return ifft2Norm(in, norm_factor, odim0, odim1);
105}
106
107array ifft3(const array& in, const dim_t odim0, const dim_t odim1,
108 const dim_t odim2) {

Callers 4

TESTFunction · 0.85
fft.cppFile · 0.85
fftconvolveTestLargeFunction · 0.85
TESTFunction · 0.85

Calls 2

ifft2NormFunction · 0.85
dimsMethod · 0.45

Tested by

no test coverage detected