python 数组转为数
时间: 2023-09-23 15:08:34 浏览: 118
数组的转换函数
您可以使用NumPy库将Python数组转换为矩阵。以下是一个示例:
```python
import numpy as np
# 创建一个Python数组
array = [1, 2, 3, 4, 5]
# 将Python数组转换为NumPy矩阵
matrix = np.array(array)
print(matrix)
```
输出结果将会是一个NumPy矩阵:
```
array([1, 2, 3, 4, 5])
```
您还可以使用`.reshape()`方法来调整矩阵的形状。例如,将上述的矩阵调整为2行3列的形状:
```python
reshaped_matrix = matrix.reshape(2, 3)
print(reshaped_matrix)
```
输出结果将会是:
```
array([[1, 2, 3],
[4, 5, 6]])
```
希望对您有所帮助!如有任何疑问,请随时提问。
阅读全文