标签: python numpy
我正在尝试将大小为n x n的零矩阵更改为边框中具有1的矩阵。
我首先通过
zm = np.zeros((n, n))
尝试了
zm[:1] = 1
将第一行更改为1,但我在更改其余部分时遇到问题。