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

Function medfilt1

src/api/cpp/filters.cpp:24–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24array medfilt1(const array& in, const dim_t wind_width,
25 const borderType edge_pad) {
26 af_array out = 0;
27 AF_THROW(af_medfilt1(&out, in.get(), wind_width, edge_pad));
28 return array(out);
29}
30
31array medfilt2(const array& in, const dim_t wind_length, const dim_t wind_width,
32 const borderType edge_pad) {

Callers

nothing calls this directly

Calls 3

af_medfilt1Function · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected