我正在编写 ac 扩展来计算他的标准偏差。性能很重要,因为它将在大型数据集上执行。从列表中获取项目后,我很难弄清楚如何获取 pyobject 的值。这是我第一次为 python 编写 ac 扩展,感谢任何帮助。显然我不知道如何正确使用代码示例按钮:(
这是我到目前为止所拥有的:
#include <Python.h>
static PyObject*
func(PyObject *self, PyObject *args)
{
PyObject *list, *item;
Py_ssize_t i, len;
if (!PyArg_UnpackTuple(args, "func", 1, 1, &list)){
return NULL;
}
printf("hello world\n");
Py_INCREF(list);
len = PyList_GET_SIZE(list);
for (i=0;i<len;i++){
item = PyList_GET_ITEM(list, i);
PyObject_Print(item,stdout,0);
}
return list;
}
static char func_doc[] = "This function calculates standard deviation.";
static PyMethodDef std_methods[] = {
{"func", func, METH_VARARGS, func_doc},
{NULL, NULL}
};
PyMODINIT_FUNC
initstd(void)
{
Py_InitModule3("std", std_methods, "This is a sample docstring.");
}