时间:2021-05-22
语句格式:
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.zerosnumpy.zeros(shape, dtype=float, order='C')Return a new array of given shape and type, filled with zeros.Parameters:shape : int or sequence of intsShape of the new array, e.g., (2, 3) or 2.dtype : data-type, optionalThe desired data-type for the array, e.g., numpy.int8. Default is numpy.float64.order : {‘C', ‘F'}, optionalWhether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.Returns:out : ndarrayArray 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 dtypearray([(0, 0), (0, 0)], dtype=[('x', '<i4'), ('y', '<i4')])内容扩展:
python创建数组的方法
直接定义法:
1.直接定义
matrix=[0,1,2,3]2.间接定义
matrix=[0 for i in range(4)]print(matrix)Numpy方法:
Numpy内置了从头开始创建数组的函数:
zeros(shape)将创建一个用指定形状用0填充的数组。默认的dtype是float64。
下面是几种常用的创建方法:
#coding=utf-8import numpy as npa = np.array([1,2,3,4,5])print ab = np.zeros((2,3))print bc = np.arange(10)print cd = np.arange(2,10,dtype=np.float)print de = np.linspace(1.0,4.0,6)print ef = np.indices((3,3))print f到此这篇关于python如何建立全零数组的文章就介绍到这了,更多相关python建立全零数组的方法内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
用python语言读取二进制图片文件,并提取非零数据统计信息(例如:max,min,skewnessandkurtosis)python新手,注释较少,欢迎指教
本文主讲Python中Numpy数组的类型、全0全1数组的生成、随机数组、数组操作、矩阵的简单运算、矩阵的数学运算。尽管可以用python中list嵌套来模拟矩
数组概述C#数组从零开始建立索引,即数组索引从零开始。C#中数组的工作方式与在大多数其他流行语言中的工作方式类似。但还有一些差异应引起注意。声明数组时,方括号(
面对零售行业不确定性加剧,商家如何强化能力应对挑战,如何与顾客之间建立稳定有效的关系?11月8日,在2019中国全零售大会—微信支付专场活动中,微信
excel表格中想要景零数值变成短横线,今天我们就来介绍三种将零值转化为横线的方法,具体方法如下,详细请看下文介绍。软件名称:Office2016专业增强版中文