| 16 | namespace af { |
| 17 | |
| 18 | array histogram(const array& in, const unsigned nbins, const double minval, |
| 19 | const double maxval) { |
| 20 | af_array out = 0; |
| 21 | AF_THROW(af_histogram(&out, in.get(), nbins, minval, maxval)); |
| 22 | return array(out); |
| 23 | } |
| 24 | |
| 25 | array histogram(const array& in, const unsigned nbins) { |
| 26 | af_array out = 0; |
nothing calls this directly
no test coverage detected