python中numpy.zeros(np.zeros)的使用方法


Posted in Python onNovember 07, 2017

翻译:

用法:zeros(shape, dtype=float, order='C')

返回:返回来一个给定形状和类型的用0填充的数组;

参数:shape:形状

dtype:数据类型,可选参数,默认numpy.float64

dtype类型:

t ,位域,如t4代表4位

b,布尔值,true or false

i,整数,如i8(64位)

u,无符号整数,u8(64位)

f,浮点数,f8(64位)

c,浮点负数,

o,对象,

s,a,字符串,s24

u,unicode,u24

order:可选参数,c代表与c语言类似,行优先;F代表列优先

例子:

np.zeros(5)
array([ 0., 0., 0., 0., 0.])


np.zeros((5,), dtype=np.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.]])


np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype
array([(0, 0), (0, 0)],
   dtype=[('x', '<i4'), ('y', '<i4')])


########################################################

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.


See Also
--------
zeros_like : Return an array of zeros with shape and type of input.
ones_like : Return an array of ones with shape and type of input.
empty_like : Return an empty array with shape and type of input.
ones : Return a new array setting values to one.
empty : Return a new uninitialized array.


Examples
--------
np.zeros(5)
array([ 0., 0., 0., 0., 0.])


np.zeros((5,), dtype=np.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.]])


np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype
array([(0, 0), (0, 0)],
   dtype=[('x', '<i4'), ('y', '<i4')])
Type:   builtin_function_or_method

以上这篇python中numpy.zeros(np.zeros)的使用方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python读取Android permission文件
Nov 01 Python
python去除所有html标签的方法
May 05 Python
Python实现统计单词出现的个数
May 28 Python
Python编程修改MP3文件名称的方法
Apr 19 Python
Python网络爬虫与信息提取(实例讲解)
Aug 29 Python
解决Python中list里的中文输出到html模板里的问题
Dec 17 Python
Gauss-Seidel迭代算法的Python实现详解
Jun 29 Python
Python将文字转成语音并读出来的实例详解
Jul 15 Python
使用APScheduler3.0.1 实现定时任务的方法
Jul 22 Python
Python GUI库PyQt5样式QSS子控件介绍
Feb 25 Python
python对execl 处理操作代码
Jun 22 Python
Python常用外部指令执行代码实例
Nov 05 Python
django项目运行因中文而乱码报错的几种情况解决
Nov 07 #Python
Python创建二维数组实例(关于list的一个小坑)
Nov 07 #Python
python 简单备份文件脚本v1.0的实例
Nov 06 #Python
Python如何实现MySQL实例初始化详解
Nov 06 #Python
django rest framework之请求与响应(详解)
Nov 06 #Python
基于python中的TCP及UDP(详解)
Nov 06 #Python
利用Python循环(包括while&amp;for)各种打印九九乘法表的实例
Nov 06 #Python
You might like
php 中文字符串首字母的获取函数分享
2013/11/04 PHP
php传值和传引用的区别点总结
2019/11/19 PHP
浅析Prototype的模板类 Template
2011/12/07 Javascript
js+数组实现网页上显示时间/星期几的实用方法
2013/01/18 Javascript
js 判断控件获得焦点的示例代码
2014/03/04 Javascript
JavaScript实现数组在指定位置插入若干元素的方法
2015/04/06 Javascript
JavaScript如何实现对数字保留两位小数一位自动补零
2015/12/18 Javascript
jquery实现列表上下移动功能
2016/02/25 Javascript
基于JavaScript实现鼠标向下滑动加载div的代码
2016/08/31 Javascript
实时监控input框,实现输入框与下拉框联动的实例
2018/01/23 Javascript
VUE + UEditor 单图片跨域上传功能的实现方法
2018/02/08 Javascript
详解React之key的使用和实践
2018/09/29 Javascript
Vue从TodoList中学父子组件通信
2019/02/05 Javascript
js实现mp3录音通过websocket实时传送+简易波形图效果
2020/06/12 Javascript
node使用async_hooks模块进行请求追踪
2021/01/28 Javascript
跟老齐学Python之用Python计算
2014/09/12 Python
python实现画五角星和螺旋线的示例
2019/01/20 Python
python join方法使用详解
2019/07/30 Python
Python中__repr__和__str__区别详解
2019/11/07 Python
Python生态圈图像格式转换问题(推荐)
2019/12/02 Python
python 两个一样的字符串用==结果为false问题的解决
2020/03/12 Python
Django中ORM找出内容不为空的数据实例
2020/05/20 Python
Python3爬虫里关于识别微博宫格验证码的知识点详解
2020/07/30 Python
Python datetime 如何处理时区信息
2020/09/02 Python
基于python实现复制文件并重命名
2020/09/16 Python
Python colormap库的安装和使用详情
2020/10/06 Python
英国的知名精品百货公司:House of Fraser(福来德)
2016/08/14 全球购物
《美丽的小路》教学反思
2014/02/26 职场文书
市场营销专业毕业生求职信
2014/03/26 职场文书
实验心得体会
2014/09/05 职场文书
2014年党员学习“三严三实”思想汇报
2014/09/15 职场文书
钱学森电影观后感
2015/06/04 职场文书
2016入党培训心得体会范文
2016/01/08 职场文书
导游词之河姆渡遗址博物馆
2019/10/10 职场文书
详解python中[-1]、[:-1]、[::-1]、[n::-1]使用方法
2021/04/25 Python
详细介绍python类及类的用法
2021/05/31 Python