原文: https://www.programiz.com/python-programming/examples/add-matrix
要理解此示例,您应该了解以下 Python 编程主题:
在 Python 中,我们可以将矩阵实现为嵌套列表(列表内的列表)。 我们可以将每个元素视为矩阵的一行。
例如,X = [[1, 2], [4, 5], [3, 6]]
将代表 3x2 矩阵。 第一行可以选择为X[0]
,第一行中的元素可以选择为X[0][0]
。
我们可以在 Python 中以各种方式执行矩阵加法。 这里有几个。
# Program to add two matrices using nested loop
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]]
# iterate through rows
for i in range(len(X)):
# iterate through columns
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]
在此程序中,我们使用了嵌套的for
循环来遍历每一行和每一列。 在每一点上,我们在两个矩阵中添加相应的元素,并将其存储在结果中。
# Program to add two matrices using list comprehension
X = [[12,7,3],
[4 ,5,6],
[7 ,8,9]]
Y = [[5,8,1],
[6,7,3],
[4,5,9]]
result = [[X[i][j] + Y[i][j] for j in range(len(X[0]))] for i in range(len(X))]
for r in result:
print(r)
该程序的输出与上述相同。 我们使用嵌套列表推导式来遍历矩阵中的每个元素。
列表推导式允许我们编写简洁的代码,我们必须尝试在 Python 中经常使用它们。 他们非常有帮助。