小编典典

数据类型不明

python

我正在尝试使用矩阵来计算内容。代码是这个

import numpy as np
# some code
mmatrix = np.zeros(nrows, ncols)
print mmatrix[0, 0]

但我收到“无法理解的数据类型”,并且如果我从终端执行此操作,它将起作用。


阅读 166

收藏
2021-01-20

共1个答案

小编典典

尝试:

mmatrix = np.zeros((nrows, ncols))

由于shape参数必须是int或int序列

http://docs.scipy.org/doc/numpy/reference/generation/numpy.zeros.html

否则,您将作为dtype传递ncolsnp.zeros

2021-01-20