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

Function ifft2InPlace

src/api/cpp/fft.cpp:159–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159void ifft2InPlace(array& in, const double norm_factor) {
160 const dim4 dims = in.dims();
161 double norm = norm_factor * (1.0 / static_cast<double>(dims[0] * dims[1]));
162 AF_THROW(af_ifft2_inplace(in.get(), norm));
163}
164
165void ifft3InPlace(array& in, const double norm_factor) {
166 const dim4 dims = in.dims();

Callers 2

TESTFunction · 0.85
fft.cppFile · 0.85

Calls 3

af_ifft2_inplaceFunction · 0.85
dimsMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected