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 字符串定义
Sep 25 Python
介绍Python的Urllib库的一些高级用法
Apr 30 Python
Python MySQLdb 使用utf-8 编码插入中文数据问题
Mar 13 Python
python机器学习之随机森林(七)
Mar 26 Python
python调用百度REST API实现语音识别
Aug 30 Python
Django中的ajax请求
Oct 19 Python
一看就懂得Python的math模块
Oct 21 Python
Python3实现从排序数组中删除重复项算法分析
Apr 03 Python
django的auth认证,authenticate和装饰器功能详解
Jul 25 Python
python解释器spython使用及原理解析
Aug 24 Python
python可视化实现KNN算法
Oct 16 Python
python用WxPython库实现无边框窗体和透明窗体实现方法详解
Feb 21 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下使用SMTP发邮件的代码
2008/01/10 PHP
解决phpmyadmin中缺少mysqli扩展问题的方法
2013/05/06 PHP
php中的filesystem文件系统函数介绍及使用示例
2014/02/13 PHP
php中使用Ajax时出现Error(c00ce56e)的详细解决方案
2014/11/03 PHP
Linux环境下php实现给网站截图的方法
2016/05/03 PHP
PHP反射学习入门示例
2019/06/14 PHP
二级域名或跨域共享Cookies的实现方法
2008/08/07 Javascript
模仿百度三维地图的js数据分享
2011/05/12 Javascript
JavaScript入门之对象与JSON详解
2011/10/21 Javascript
javascript Event对象详解及使用示例
2013/11/22 Javascript
js实现iframe跨页面调用函数的方法
2014/12/13 Javascript
javascript实现信息增删改查的方法
2015/07/25 Javascript
IE8下jQuery改变png图片透明度时出现的黑边
2015/08/30 Javascript
javascript字符串函数汇总
2015/12/06 Javascript
Bootstarp基本模版学习教程
2017/02/01 Javascript
浅析jsopn跨域请求原理及cors(跨域资源共享)的完美解决方法
2017/02/06 Javascript
微信小程序中用WebStorm使用LESS
2017/03/08 Javascript
利用JavaScript在网页实现八数码启发式A*算法动画效果
2017/04/16 Javascript
vue源码入口文件分析(推荐)
2018/01/30 Javascript
解决vue elementUI中table里数字、字母、中文混合排序问题
2020/01/07 Javascript
详解node和ES6的模块导出与导入
2020/02/19 Javascript
Node.js API详解之 zlib模块用法分析
2020/05/19 Javascript
以一段代码为实例快速入门Python2.7
2015/03/31 Python
python中requests模块的使用方法
2015/04/08 Python
python魔法方法-自定义序列详解
2016/07/21 Python
python flask实现分页的示例代码
2018/08/02 Python
代码详解django中数据库设置
2019/01/28 Python
Python实例教程之检索输出月份日历表
2020/12/16 Python
爱游人:Travelliker
2017/09/05 全球购物
节省高达65%的城市景点费用:Go City
2019/07/06 全球购物
专项法律服务方案
2014/06/11 职场文书
2014年客房服务员工作总结
2014/11/18 职场文书
幼儿园园长六一致辞
2015/07/31 职场文书
在前女友婚礼上,用Python破解了现场的WIFI还把名称改成了
2021/05/28 Python
pytorch 运行一段时间后出现GPU OOM的问题
2021/06/02 Python
springboot读取nacos配置文件
2022/05/20 Java/Android