Python numpy.zeros()で空のNumpy配列(ndarray)を作成するサンプル

環境
Windows 11 Pro 64bit
Python 3.11

構文
変数にnumpy.zeros()を代入します。
numpy.zeros()の引数「shape」にnumpy配列の形状をタプルで指定します。
empty_array = numpy.zeros(shape=(n,l))
上記のnumpy.zeros()は、引数「shape」に指定した形状のnumpy配列を生成します。

使用例

import numpy as np

numbers = np.zeros(shape=(3,3))

print(type(numbers))
print(numbers)

実行結果

<class 'numpy.ndarray'>
[[0. 0. 0.]
[0. 0. 0.]
[0. 0. 0.]]

 

IT

Posted by arkgame