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

Function fft2Norm

src/api/cpp/fft.cpp:25–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25array fft2Norm(const array& in, const double norm_factor, const dim_t odim0,
26 const dim_t odim1) {
27 af_array out = 0;
28 AF_THROW(af_fft2(&out, in.get(), norm_factor, odim0, odim1));
29 return array(out);
30}
31
32array fft3Norm(const array& in, const double norm_factor, const dim_t odim0,
33 const dim_t odim1, const dim_t odim2) {

Callers 4

TESTFunction · 0.85
fftFunction · 0.85
fft2Function · 0.85
dftFunction · 0.85

Calls 3

af_fft2Function · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected