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

Function ifft

src/api/cpp/fft.cpp:92–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92array ifft(const array& in, const dim_t odim0) {
93 const dim4 dims = in.dims();
94 dim_t dim0 = odim0 == 0 ? dims[0] : odim0;
95 double norm_factor = 1.0 / static_cast<double>(dim0);
96 return ifftNorm(in, norm_factor, odim0);
97}
98
99array ifft2(const array& in, const dim_t odim0, const dim_t odim1) {
100 const dim4 dims = in.dims();

Callers 3

TESTFunction · 0.85
fft.cppFile · 0.85
fftconvolveTestLargeFunction · 0.85

Calls 2

ifftNormFunction · 0.85
dimsMethod · 0.45

Tested by

no test coverage detected