| 22 | } |
| 23 | |
| 24 | array 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 | |
| 31 | array medfilt2(const array& in, const dim_t wind_length, const dim_t wind_width, |
| 32 | const borderType edge_pad) { |
nothing calls this directly
no test coverage detected