How do I define a multi-dimensional float array using ctypes
in python
?
Is there a limitation to the开发者_如何学Go number of dimensions that can be defines?
Here's one quick-and-dirty method:
>>> A = ((ctypes.c_float * 10) * 10)
>>> a = A()
>>> a[5][5]
0.0
精彩评论