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

Function fftNorm

src/api/cpp/fft.cpp:19–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18namespace af {
19array fftNorm(const array& in, const double norm_factor, const dim_t odim0) {
20 af_array out = 0;
21 AF_THROW(af_fft(&out, in.get(), norm_factor, odim0));
22 return array(out);
23}
24
25array fft2Norm(const array& in, const double norm_factor, const dim_t odim0,
26 const dim_t odim1) {

Callers 4

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

Calls 3

af_fftFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected