Python的声明空记录阵列
我要声明一个空的记录阵列像这样:Python的声明空记录阵列
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文件中读取此数组没有任何问题。但是,我想手动创建和编辑它。
回答:
kneePointsOnAxis = np.recarray((3,),dtype=[('x',int), ('y', int), ('z',int)])
以上是 Python的声明空记录阵列 的全部内容, 来源链接: utcz.com/qa/264529.html