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

Function ifftNorm

src/api/cpp/fft.cpp:72–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70array dft(const array& in) { return dft(in, 1.0, dim4(0, 0, 0, 0)); }
71
72array ifftNorm(const array& in, const double norm_factor, const dim_t odim0) {
73 af_array out = 0;
74 AF_THROW(af_ifft(&out, in.get(), norm_factor, odim0));
75 return array(out);
76}
77
78array ifft2Norm(const array& in, const double norm_factor, const dim_t odim0,
79 const dim_t odim1) {

Callers 3

TESTFunction · 0.85
ifftFunction · 0.85
idftFunction · 0.85

Calls 3

af_ifftFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected