mathematic中取矩阵的第一列
时间: 2023-09-02 21:15:49 浏览: 112
Mathematic入门.rar_math_mathematic_mathematic官网
在Python中,可以使用NumPy库来操作矩阵。如果一个矩阵是用NumPy数组表示的,那么可以使用以下代码来提取矩阵的第一列:
```python
import numpy as np
matrix = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
first_column = matrix[:, 0]
print(first_column)
```
输出结果为:
```
[1 4 7]
```
其中,`:`表示选取所有行,`0`表示选取第一列。
阅读全文