MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / fftR2C<2>

Function fftR2C<2>

src/api/cpp/fft.cpp:182–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180
181template<>
182AFAPI array fftR2C<2>(const array& in, const dim4& dims,
183 const double norm_factor) {
184 af_array res;
185 AF_THROW(af_fft2_r2c(&res, in.get(), norm_factor == 0 ? 1.0 : norm_factor,
186 dims[0], dims[1]));
187 return array(res);
188}
189
190template<>
191AFAPI array fftR2C<3>(const array& in, const dim4& dims,

Callers 1

fft.cppFile · 0.85

Calls 3

af_fft2_r2cFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected