知行编程网知行编程网  2022-08-27 22:00 知行编程网 隐藏边栏  1,389 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python怎么建立全零数组的相关知识,包括python创建全零列表,以及python创建零数组这些编程知识,希望对大家有参考作用。

python中,可以使用“numpy.zeros()”命令建立全零数组;语法为“numpy.zeros(shape,dtype=float,order='C')”。

如何在python中创建一个全零数组



语句格式:

numpy.zeros(shape, dtype=float, order='C')



参数说明:

shape:整数或整数序列,表示生成的新数组的形状,如(2, 3)或2。

dtype:生成数组的数据格式,如numpy.int8。默认为numpy.float64。

order: {'C', 'F'} 可选,是否以 C 或 Fortran 连续(行或列)顺序存储多维数据。

返回值:ndarray,一个指定了shape, dtype, order的零数组。

示例见下:

第四个例子看起来很方便。



Numpy文档原文:

numpy.zeros
numpy.zeros(shape, dtype=float, order='C')
Return a new array of given shape and type, filled with zeros.
Parameters:
shape : int or sequence of ints
Shape of the new array, e.g., (2, 3) or 2.
dtype : data-type, optional
The desired data-type for the array, e.g., numpy.int8. Default is numpy.float64.
order : {‘C’, ‘F’}, optional
Whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.
Returns:
out : ndarray

Array of zeros with the given shape, dtype, and order.

#指定长度的一维数组
>>> np.zeros(5)
array([ 0.,  0.,  0.,  0.,  0.])

#指定数据类型,指定长度的一维数组
>>> np.zeros((5,), dtype=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.]])
      
 #指定dtype
>>> np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype
array([(0, 0), (0, 0)],
      dtype=[('x', '<i4'), ('y', '<i4')])

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享