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

Function fftR2C<1>

src/api/cpp/fft.cpp:173–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171
172template<>
173AFAPI array fftR2C<1>(const array& in, const dim4& dims,
174 const double norm_factor) {
175 af_array res;
176 AF_THROW(af_fft_r2c(&res, in.get(), norm_factor == 0 ? 1.0 : norm_factor,
177 dims[0]));
178 return array(res);
179}
180
181template<>
182AFAPI array fftR2C<2>(const array& in, const dim4& dims,

Callers 1

fft.cppFile · 0.85

Calls 3

af_fft_r2cFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected