p y t hon矩阵
时间: 2024-05-01 14:21:24 浏览: 140
hon.zip
Python可以使用多种方式来表示矩阵,下面介绍几种常见的方法:
1. 使用列表嵌套表示矩阵
```python
matrix = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
```
2. 使用NumPy库中的ndarray对象表示矩阵
```python
import numpy as np
matrix = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
```
3. 使用SciPy库中的稀疏矩阵表示稀疏矩阵
```python
import scipy.sparse as sp
matrix = sp.csr_matrix((data, (row, col)), shape=(3, 3))
```
其中,data是矩阵中非零元素的值,row和col分别表示这些非零元素在矩阵中的行和列,shape用于指定矩阵的形状。
阅读全文