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

Function ifftInPlace

src/api/cpp/fft.cpp:153–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153void ifftInPlace(array& in, const double norm_factor) {
154 const dim4 dims = in.dims();
155 double norm = norm_factor * (1.0 / static_cast<double>(dims[0]));
156 AF_THROW(af_ifft_inplace(in.get(), norm));
157}
158
159void ifft2InPlace(array& in, const double norm_factor) {
160 const dim4 dims = in.dims();

Callers 2

TESTFunction · 0.85
fft.cppFile · 0.85

Calls 3

af_ifft_inplaceFunction · 0.85
dimsMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected