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

Function fftConvolve1

src/api/cpp/fftconvolve.cpp:30–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30array fftConvolve1(const array& signal, const array& filter,
31 const convMode mode) {
32 af_array out = 0;
33 AF_THROW(af_fft_convolve1(&out, signal.get(), filter.get(), mode));
34 return array(out);
35}
36
37array fftConvolve2(const array& signal, const array& filter,
38 const convMode mode) {

Callers 3

TESTFunction · 0.85
convolve.cppFile · 0.85
fftConvolveFunction · 0.85

Calls 3

af_fft_convolve1Function · 0.85
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected