python编程矩阵乘法
时间: 2023-09-25 18:15:35 浏览: 210
用python实现矩阵乘法
Python实现矩阵乘法可以使用numpy库中的dot()函数。
示例代码:
```python
import numpy as np
# 定义两个矩阵
matrix1 = np.array([[1, 2], [3, 4]])
matrix2 = np.array([[5, 6], [7, 8]])
# 矩阵乘法,结果赋值给result
result = np.dot(matrix1, matrix2)
# 输出结果
print(result)
```
输出结果为:
```
[[19 22]
[43 50]]
```
其中,np.array()函数用于创建矩阵,dot()函数用于实现矩阵乘法。
阅读全文