numpy.zeros( )
语法:
numpy.zeros(shape, dtype=float, order='C')
返回一个指定类型和格式的数组的全为0的数组
示例:
>>> np.zeros(5)
array([ 0., 0., 0., 0., 0.])
>>> np.zeros((5), dtype=np.int)
array([0, 0, 0, 0, 0])
>>> np.zeros((2, 1))
array([[ 0.],
[ 0.]])
>>> s = (2,2)
>>> np.zeros(s)
array([[ 0., 0.],
[ 0., 0.]])
>>> np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype
array([(0, 0), (0, 0)],
dtype=[('x', '), ('y', ')])