NUMPY_API * Set variance to 1 to by-pass square-root calculation and return variance * Std */
| 312 | * Std |
| 313 | */ |
| 314 | NPY_NO_EXPORT PyObject * |
| 315 | PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out, |
| 316 | int variance) |
| 317 | { |
| 318 | return __New_PyArray_Std(self, axis, rtype, out, variance, 0); |
| 319 | } |
| 320 | |
| 321 | NPY_NO_EXPORT PyObject * |
| 322 | __New_PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out, |
nothing calls this directly
no test coverage detected