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

Function ifft3Norm

src/api/cpp/fft.cpp:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85array ifft3Norm(const array& in, const double norm_factor, const dim_t odim0,
86 const dim_t odim1, const dim_t odim2) {
87 af_array out = 0;
88 AF_THROW(af_ifft3(&out, in.get(), norm_factor, odim0, odim1, odim2));
89 return array(out);
90}
91
92array ifft(const array& in, const dim_t odim0) {
93 const dim4 dims = in.dims();

Callers 4

TESTFunction · 0.85
fft.cppFile · 0.85
ifft3Function · 0.85
idftFunction · 0.85

Calls 3

af_ifft3Function · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected