2

我有2个大矩阵:

       Xn = np.matrix(X)
       Xnt = Xn.transpose()

那么 Xn 是这样的:

   >>> Xn
   matrix([['0,208', '0,22', '0,208', ..., '0,194', '0,205', '0,205'],
    ['0,22', '0,208', '0,214', ..., '0,205', '0,205', '0,214'],
    ['0,208', '0,214', '0,22', ..., '0,205', '0,214', '0,211'],
    ..., 
    ['0,214', '0,214', '0,208', ..., '0,199', '0,211', '0,226'],
    ['0,214', '0,208', '0,208', ..., '0,211', '0,226', '0,252'],
    ['0,208', '0,208', '0,211', ..., '0,226', '0,252', '0,24']], 
   dtype='|S5')

但我想将 Xn 和 Xnt 相乘。发生错误。

  >>> print(Xn*Xnt)

    Traceback (most recent call last):
    File "<pyshell#2>", line 1, in <module>
    print(Xn*Xnt)
    File "C:\Python27\lib\site-packages\numpy\matrixlib\defmatrix.py", line 330, in __mul__
    return N.dot(self, asmatrix(other))
    ValueError: data type must provide an itemsize

有什么问题?

4

1 回答 1

4

您的矩阵元素是字符串 -dtype='|S5'打印矩阵时请注意。尝试先将 X 的元素从字符串转换为浮点数。

于 2013-07-16T07:58:45.127 回答