np.zeros()函数:

一、np.zeros()函数的作用:
np.zeros()函数返回一个元素全为0且给定形状和类型的数组:
zeros(shape, dtype=float, order=‘C’)
1.shape:形状
2.dtype:数据类型,可选参数,默认numpy.float64
3.order:可选参数,c代表与c语言类似,行优先;F代表列优先

例1:

import numpy as np

print(np.zeros((2,5)))

运行结果:
一个2行5列的矩阵

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

例2:

print(np.zeros((2,5),dtype= np.int))

运行结果:

[[0 0 0 0 0]
[0 0 0 0 0]]
上一篇:tensor 类型转换


下一篇:np.where np.linspace() (python)