2.2.1.1 它是…
ndarray =
内存块 + 索引体系 + 数据类型描述符
- 原始数据
- 如何定义一个元素
- 如何解释一个元素
In [ ]:
typedef struct PyArrayObject {
PyObject_HEAD
/* Block of memory */
char *data;
/* Data type descriptor */
PyArray_Descr *descr;
/* Indexing scheme */
int nd;
npy_intp *dimensions;
npy_intp *strides;
/* Other stuff */
PyObject *base;
int flags;
PyObject *weakreflist;
} PyArrayObject;