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

Function ifft3InPlace

src/api/cpp/fft.cpp:165–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165void ifft3InPlace(array& in, const double norm_factor) {
166 const dim4 dims = in.dims();
167 double norm =
168 norm_factor * (1.0 / static_cast<double>(dims[0] * dims[1] * dims[2]));
169 AF_THROW(af_ifft3_inplace(in.get(), norm));
170}
171
172template<>
173AFAPI array fftR2C<1>(const array& in, const dim4& dims,

Callers 2

TESTFunction · 0.85
fft.cppFile · 0.85

Calls 3

af_ifft3_inplaceFunction · 0.85
dimsMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected