1 | initial version |
This worls for me:
numpy.array([(x,y,z), (x2,y2,y2)], dtype=numpy.float)
The key is the dtype=numpy.float
.
2 | No.2 Revision |
This worls works for me:
numpy.array([(x,y,z), (x2,y2,y2)], dtype=numpy.float)
The key is the dtype=numpy.float
.