创新互联Python教程:python怎么建立全零数组

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

创新互联是一家专业提供新河企业网站建设,专注与成都网站设计、成都网站建设、H5网站设计、小程序制作等业务。10年已为新河众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。

语句格式:

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

参数说明:

    shape:整型或元素为整型的序列,表示生成的新数组的shape,如(2,3)或 2。

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

    order:{'C', 'F'}可选,是否将多维数据存储为C-或Fortran-contiguous(按行或按列)顺序。

    返回值: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', '

推荐课程:python语言设计(嵩天教授)

本文名称:创新互联Python教程:python怎么建立全零数组
文章来源:http://www.shufengxianlan.com/qtweb/news20/101320.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联