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

Function array_fastCopyAndTranspose

numpy/core/src/multiarray/multiarraymodule.c:3106–3115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3104}
3105
3106static PyObject *
3107array_fastCopyAndTranspose(PyObject *NPY_UNUSED(dummy), PyObject *args)
3108{
3109 PyObject *a0;
3110
3111 if (!PyArg_ParseTuple(args, "O:fastCopyAndTranspose", &a0)) {
3112 return NULL;
3113 }
3114 return PyArray_Return((PyArrayObject *)PyArray_CopyAndTranspose(a0));
3115}
3116
3117static PyObject *
3118array_correlate(PyObject *NPY_UNUSED(dummy),

Callers

nothing calls this directly

Calls 2

PyArray_ReturnFunction · 0.85
PyArray_CopyAndTransposeFunction · 0.85

Tested by

no test coverage detected