MCPcopy Create free account
hub / github.com/numpy/numpy / PyArray_Std

Function PyArray_Std

numpy/core/src/multiarray/calculation.c:314–319  ·  view source on GitHub ↗

NUMPY_API * Set variance to 1 to by-pass square-root calculation and return variance * Std */

Source from the content-addressed store, hash-verified

312 * Std
313 */
314NPY_NO_EXPORT PyObject *
315PyArray_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
321NPY_NO_EXPORT PyObject *
322__New_PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out,

Callers

nothing calls this directly

Calls 1

__New_PyArray_StdFunction · 0.85

Tested by

no test coverage detected