我是靠谱客的博主 包容小熊猫,最近开发中收集的这篇文章主要介绍python singular matrix_Numpy的奇异矩阵问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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:Python26libsite-packagesnumpylinalglinalg.py", line 445, in inv

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

File "C:Python26libsite-packagesnumpylinalglinalg.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)

最后

以上就是包容小熊猫为你收集整理的python singular matrix_Numpy的奇异矩阵问题的全部内容,希望文章能够帮你解决python singular matrix_Numpy的奇异矩阵问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部