| 23 | |
| 24 | template<typename T> |
| 25 | inline af_array histogram(const af_array in, const unsigned &nbins, |
| 26 | const double &minval, const double &maxval, |
| 27 | const bool islinear) { |
| 28 | return getHandle( |
| 29 | histogram<T>(getArray<T>(in), nbins, minval, maxval, islinear)); |
| 30 | } |
| 31 | |
| 32 | af_err af_histogram(af_array *out, const af_array in, const unsigned nbins, |
| 33 | const double minval, const double maxval) { |
no test coverage detected