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

Function ifft2Norm

src/api/cpp/fft.cpp:78–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78array ifft2Norm(const array& in, const double norm_factor, const dim_t odim0,
79 const dim_t odim1) {
80 af_array out = 0;
81 AF_THROW(af_ifft2(&out, in.get(), norm_factor, odim0, odim1));
82 return array(out);
83}
84
85array ifft3Norm(const array& in, const double norm_factor, const dim_t odim0,
86 const dim_t odim1, const dim_t odim2) {

Callers 3

TESTFunction · 0.85
ifft2Function · 0.85
idftFunction · 0.85

Calls 3

af_ifft2Function · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected