怎么創(chuàng)建NumPy的全零或全一數(shù)組

小億
194
2024-05-11 16:31:49

要?jiǎng)?chuàng)建一個(gè)全零或全一數(shù)組,可以使用NumPy庫(kù)中的np.zeros()和np.ones()函數(shù)。

創(chuàng)建全零數(shù)組:

import numpy as np

# 創(chuàng)建一個(gè)形狀為(3, 4)的全零數(shù)組
zeros_array = np.zeros((3, 4))
print(zeros_array)

輸出:

[[0. 0. 0. 0.]
 [0. 0. 0. 0.]
 [0. 0. 0. 0.]]

創(chuàng)建全一數(shù)組:

import numpy as np

# 創(chuàng)建一個(gè)形狀為(2, 3)的全一數(shù)組
ones_array = np.ones((2, 3))
print(ones_array)

輸出:

[[1. 1. 1.]
 [1. 1. 1.]]

通過(guò)指定形狀參數(shù),可以創(chuàng)建任意維度的全零或全一數(shù)組。

0