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

Function af_fft_r2c

src/api/c/fft.cpp:218–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218af_err af_fft_r2c(af_array *out, const af_array in, const double norm_factor,
219 const dim_t pad0) {
220 const dim_t pad[1] = {pad0};
221 return fft_r2c(out, in, norm_factor, (pad0 > 0 ? 1 : 0), pad, 1);
222}
223
224af_err af_fft2_r2c(af_array *out, const af_array in, const double norm_factor,
225 const dim_t pad0, const dim_t pad1) {

Callers 1

fftR2C<1>Function · 0.50

Calls 1

fft_r2cFunction · 0.70

Tested by

no test coverage detected