How do I define a multi-dimensional float array using ctypes in python?
ctypes
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
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
494 times
active