Python 练习实例44 - Python 两个矩阵相加
两个 3 行 3 列的矩阵,实现其对应位置的数据相加,并返回一个新矩阵:
X = [[12,7,3], [4 ,5,6], [7 ,8,9]] Y = [[5,8,1], [6,7,3], [4,5,9]]
程序分析:创建一个新的 3 行 3 列的矩阵,使用 for 迭代并取出 X 和 Y 矩阵中对应位置的值,相加后放到新矩阵的对应位置中。
程序源代码:
源代码:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
X = [[12,7,3],
[4 ,5,6],
[7 ,8,9]]
Y = [[5,8,1],
[6,7,3],
[4,5,9]]
result = [[0,0,0],
[0,0,0],
[0,0,0]]
# 迭代输出行
for i in range(len(X)):
# 迭代输出列
for j in range(len(X[0])):
result[i][j] = X[i][j] + Y[i][j]
for r in result:
print(r)
执行以上代码,输出结果如下:
[17, 15, 4] [10, 12, 9] [11, 13, 18]
super
sup***guo555@126.com
参考方法:
super
sup***guo555@126.com
lll
279***0052@qq.com
参考方法:
lll
279***0052@qq.com
朦胧
253***5732@qq.com
参考方法:
朦胧
253***5732@qq.com
qingfeng
297***734@qq.com
参考方法:
qingfeng
297***734@qq.com
du_solong
157***7972@qq.com
使用 numpy:
du_solong
157***7972@qq.com
hello world
1@q***om
Python3 使用 random 随机生成两个矩阵:
hello world
1@q***om
ray
117***0890@qq.com
参考方法:
ray
117***0890@qq.com
sun_shine
101***0300@qq.com
参考方法:
sun_shine
101***0300@qq.com
奚适
xnx***7@sina.com
使用匿名函数:
奚适
xnx***7@sina.com