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

Function array_conjugate

numpy/core/src/multiarray/methods.c:2608–2618  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2606
2607
2608static PyObject *
2609array_conjugate(PyArrayObject *self, PyObject *args)
2610{
2611 PyArrayObject *out = NULL;
2612 if (!PyArg_ParseTuple(args, "|O&:conjugate",
2613 PyArray_OutputConverter,
2614 &out)) {
2615 return NULL;
2616 }
2617 return PyArray_Conjugate(self, out);
2618}
2619
2620
2621static PyObject *

Callers

nothing calls this directly

Calls 1

PyArray_ConjugateFunction · 0.85

Tested by

no test coverage detected