How to create a numpy record array from C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:21:05Z http://stackoverflow.com/feeds/question/214549 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214549/how-to-create-a-numpy-record-array-from-c 2 How to create a numpy record array from C Vebjorn Ljosa 2008-10-18T04:03:35Z 2008-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#214574 2 Answer by Adam Rosenfield for How to create a numpy record array from C Adam Rosenfield 2008-10-18T04:33:02Z 2008-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#215090 1 Answer by Vebjorn Ljosa for How to create a numpy record array from C Vebjorn Ljosa 2008-10-18T14:19:14Z 2008-10-18T14:19:14Z <p>Use <code>PyArray_DescrConverter</code>. Here's an example:</p> <pre><code>#include &lt;Python.h&gt; #include &lt;stdio.h&gt; #include &lt;numpy/arrayobject.h&gt; 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, &amp;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>