Python 怎样出矩阵啊,就单位阵
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 怎样出矩阵啊,就单位阵相关的知识,希望对你有一定的参考价值。
参考技术A 例如:三阶的单位阵:unit1=[[1,0,0],[0,1,0],[0,0,1]]
print(unit1)
for i in range(0,3):
for j in range(0,3):
print(unit1[i][j],end=' ')
print()
for i in range(0,3):
print(unit1[i]) 参考技术B 不用那么麻烦,两行就行了(三阶):
import numpy as np
print(np.eye(3))
以上是关于Python 怎样出矩阵啊,就单位阵的主要内容,如果未能解决你的问题,请参考以下文章
证明对称阵A为正定的充分必要条件是:存在可逆矩阵U,使A=UTU,即A与单位阵E合同