| 36 | |
| 37 | template<> |
| 38 | AFAPI af_cdouble stdev(const array& in, const af_var_bias bias) { |
| 39 | double real, imag; |
| 40 | AF_THROW(af_stdev_all_v2(&real, &imag, in.get(), bias)); |
| 41 | return {real, imag}; |
| 42 | } |
| 43 | |
| 44 | template<> |
| 45 | AFAPI af_cfloat stdev(const array& in) { |
nothing calls this directly
no test coverage detected