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

Function fft_inplace

src/api/c/fft.cpp:124–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122
123template<typename T>
124void fft_inplace(af_array in, const double norm_factor, int rank,
125 bool direction) {
126 Array<T> &input = getArray<T>(in);
127 fft_inplace<T>(input, rank, direction);
128 if (norm_factor != 1) { multiply_inplace<T>(input, norm_factor); }
129}
130
131af_err fft_inplace(af_array in, const double norm_factor, int rank,
132 bool direction) {

Callers 6

af_fft_inplaceFunction · 0.70
af_fft2_inplaceFunction · 0.70
af_fft3_inplaceFunction · 0.70
af_ifft_inplaceFunction · 0.70
af_ifft2_inplaceFunction · 0.70
af_ifft3_inplaceFunction · 0.70

Calls 3

getTypeMethod · 0.45
dimsMethod · 0.45
ndimsMethod · 0.45

Tested by

no test coverage detected