热线电话:13121318867

登录
2018-10-16 阅读量: 1842
如何用Python3的for循环生成5阶Hibert矩阵?

python3实现:

nums=[1,2,3,4,5]

for i in nums:

for j in nums:

hilbert=round(1/(i+j-1),5)

if j==5:

print(hilbert,end="\n")

else:

print(hilbert,end=" ")

189.1847
1
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子