python语法.numpy的zeros函数
#返回给定形状和类型的新数组,用0填充。numpy.zeros(shape,dtype=float,order = 'C')#参数shape int 或 int 的元组 ,生成矩阵的形状可以为元组,或者单个数字#dtype 生成矩阵的数据类型#order:{'C','F'},可选,默认:'C',是否在内容中以行(C)或列(F)顺序存储多维数据。举例np.zeros(3)Out[1]: array([ 0., 0., 0.])np.zeros((2,3))Out[2]: array