要創(chuàng)建NumPy的零數(shù)組和單位數(shù)組,可以使用numpy.zeros()
和numpy.eye()
函數(shù)。
import numpy as np
zero_array = np.zeros((3,3))
print(zero_array)
輸出:
[[0. 0. 0.]
[0. 0. 0.]
[0. 0. 0.]]
import numpy as np
eye_array = np.eye(3)
print(eye_array)
輸出:
[[1. 0. 0.]
[0. 1. 0.]
[0. 0. 1.]]
這樣就可以創(chuàng)建出指定形狀的零數(shù)組和單位數(shù)組。