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

Function fftInPlace

src/api/cpp/fft.cpp:141–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139array idft(const array& in) { return idft(in, 1.0, dim4(0, 0, 0, 0)); }
140
141void fftInPlace(array& in, const double norm_factor) {
142 AF_THROW(af_fft_inplace(in.get(), norm_factor));
143}
144
145void fft2InPlace(array& in, const double norm_factor) {
146 AF_THROW(af_fft2_inplace(in.get(), norm_factor));

Callers 2

TESTFunction · 0.85
fft.cppFile · 0.85

Calls 2

af_fft_inplaceFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected