python中初始化一个n*n的全0 矩阵
时间: 2024-01-23 07:03:15 浏览: 61
python 实现矩阵置零
可以使用numpy库中的zeros函数来初始化一个n*n的全0矩阵。示例代码如下:
```
import numpy as np
n = 5 # 矩阵的大小为5*5
matrix = np.zeros((n, n))
print(matrix)
```
输出结果为:
```
[[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]
[0. 0. 0. 0. 0.]]
```
阅读全文