当前位置:   article > 正文

python singular matrix,Numpy的奇异矩阵问题

python singular matrix

I am trying to multiply a vector(3 by 1) by its transpose(1 by 3). I get a (3 by 3) array but I cannot get its inverse. Any idea why?

import numpy as np

c=array([1, 8, 50])

np.transpose(c[np.newaxis]) * c

array([[ 1, 8, 50],

[ 8, 64, 400],

[ 50, 400, 2500]])

np.linalg.inv(np.transpose(c[np.newaxis]) * c)

Traceback (most recent call last):

File "", line 1, in

File "C:\Python26\lib\site-packages\numpy\linalg\linalg.py", line 445, in inv

return wrap(solve(a, identity(a.shape[0], dtype=a.dtype)))

File "C:\Python26\lib\site-packages\numpy\linalg\linalg.py", line 328, in solve

raise LinAlgError, 'Singular matrix'

LinAlgError: Singular matrix

解决方案

The matrix you pasted

[[ 1, 8, 50],

[ 8, 64, 400],

[ 50, 400, 2500]]

Has a determinant of zero. This is the definition of a Singular matrix (one for which an inverse does not exist)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/96551?site
推荐阅读
相关标签
  

闽ICP备14008679号