numpy.zeros()

動作

このメソッドは,すべての要素の値が 0 の配列を生成します.

引数と戻り値

引数は「zeros(shape[, dtype, order])」です.shape: 配列の形を表す整数やリスト,タプルです.dtype: データの型 (default folat64) です.order: データの格納方法 ('C': row-major C-style default, 'F': column-major Fortran-style) を示します.通常,order は指定する必要はありません.

戻り値は,Numpy の ndarray です.

プログラム例

import numpy as np

a = np.zeros(6)
b = np.zeros((2,3))
c = np.zeros((2,2,2), dtype=np.int)
d = np.zeros([3,2], dtype=np.int)

print('a = ', a, '\n')
print('b = ', b, '\n')
print('c = ', c, '\n')
print('d = ', d, '\n')

実行結果

a =  [ 0.  0.  0.  0.  0.  0.] 

b =  [[ 0.  0.  0.]
      [ 0.  0.  0.]] 

c =  [[[0 0]
       [0 0]]

      [[0 0]
       [0 0]]] 

d =  [[0 0]
      [0 0]
      [0 0]]