Python声明空记录数组

时间:2012-10-12 06:11:00

标签: python arrays

我想声明一个像这样的空记录数组:

kneePointsOnAxis = np.recarray((3,), dtype=[(int, int, int)])

然而,它给了我和错误:

TypeError: data type not understood

最后,我希望我的记录数组看起来像这样:

[(7.0, 0.0, 21.0) (16.0, 0.0, 6.0) (45.0, 0.0, 1.0)]

我从CSV文件中读取此数组没有任何问题。但是,我想手动创建和编辑它。

1 个答案:

答案 0 :(得分:3)

kneePointsOnAxis = np.recarray((3,),dtype=[('x',int), ('y', int), ('z',int)])