在 Python 中计算矩阵 A =(1 2 3) 乘以矩阵 B =208 15.14/ 的代码(写两种)。
时间: 2023-05-13 12:04:40 浏览: 87
node-v15.14.0-linux-arm64.tar.gz
以下是两种 Python 中计算矩阵 A =(1 2 3) 乘以矩阵 B =208 15.14/ 的代码:
方法一:
import numpy as np
A = np.array([[1, 2, 3]])
B = np.array([[2, 0, 8], [1, 5.14, 0]])
result = np.dot(A, B)
print(result)
方法二:
A = [[1, 2, 3]]
B = [[2, 0, 8], [1, 5.14, 0]]
result = [[sum(a * b for a, b in zip(row, col)) for col in zip(*B)] for row in A]
print(result)
阅读全文