How to create a numpy record array from C - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T01:21:05Zhttp://stackoverflow.com/feeds/question/214549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/214549/how-to-create-a-numpy-record-array-from-c2How to create a numpy record array from CVebjorn Ljosa2008-10-18T04:03:35Z2008-10-18T14:19:14Z
<p>On the Python side, I can create new numpy record arrays as follows:</p>
<pre><code>numpy.zeros((3,), dtype=[('a', 'i4'), ('b', 'U5')])
</code></pre>
<p>How do I do the same from a C program? I suppose I have to call <code>PyArray_SimpleNewFromDescr(nd, dims, descr)</code>, but how do I construct a <code>PyArray_Descr</code> that is appropriate for passing as the third argument to <code>PyArray_SimpleNewFromDescr</code>?</p>
http://stackoverflow.com/questions/214549/how-to-create-a-numpy-record-array-from-c/214574#2145742Answer by Adam Rosenfield for How to create a numpy record array from CAdam Rosenfield2008-10-18T04:33:02Z2008-10-18T04:33:02Z<p>See the <a href="http://numpy.scipy.org/numpybook.pdf" rel="nofollow">Guide to NumPy</a>, section 13.3.10. There's lots of different ways to make a descriptor, although it's not nearly as easy as writing <code>[('a', 'i4'), ('b', 'U5')]</code>.</p>
http://stackoverflow.com/questions/214549/how-to-create-a-numpy-record-array-from-c/215090#2150901Answer by Vebjorn Ljosa for How to create a numpy record array from CVebjorn Ljosa2008-10-18T14:19:14Z2008-10-18T14:19:14Z<p>Use <code>PyArray_DescrConverter</code>. Here's an example:</p>
<pre><code>#include <Python.h>
#include <stdio.h>
#include <numpy/arrayobject.h>
int main(int argc, char *argv[])
{
int dims[] = { 2, 3 };
PyObject *op, *array;
PyArray_Descr *descr;
Py_Initialize();
import_array();
op = Py_BuildValue("[(s, s), (s, s)]", "a", "i4", "b", "U5");
PyArray_DescrConverter(op, &descr);
Py_DECREF(op);
array = PyArray_SimpleNewFromDescr(2, dims, descr);
PyObject_Print(array, stdout, 0);
printf("\n");
Py_DECREF(array);
return 0;
}
</code></pre>
<p>Thanks to <a href="http://stackoverflow.com/users/9530/adam-rosenfield">Adam Rosenfield</a> for pointing to Section 13.3.10 of the <a href="http://numpy.scipy.org/numpybook.pdf" rel="nofollow">Guide to NumPy</a>.</p>