How do I define a multi-dimensional float array using ctypes
in python
?
Is there a limitation to the 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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With