np.zeros()函数的使用方法
作者:勤奋的大熊猫 时间:2023-11-10 06:33:36
函数调用方法:
numpy.zeros(shape, dtype=float)
各个参数意义:
shape:创建的新数组的形状(维度)。
dtype:创建新数组的数据类型。
返回值:给定维度的全零数组。
基础用法:
import numpy as np
array = np.zeros([2, 3])
print(array)
print(array.dtype)
"""
result:
[[0. 0. 0.]
[0. 0. 0.]]
float64
"""
可以看到我们成功创建了一个2行3列的全零二维数组。并且创建的数组中的数据类型是np.float64类型。
进阶用法:
import numpy as np
array = np.zeros([2, 3], dtype=np.int32)
print(array)
print(array.dtype)
"""
result:
[[0 0 0]
[0 0 0]]
int32
"""
可以看到,这里我们同样成功创建了一个2行3列的全零二维数组。并且我们指定了其数据类型为np.int32。
最高级的用法:
import numpy as np
# Create rain data
n_drops = 10
rain_drops = np.zeros(n_drops, dtype=[('position', float, (2,)),
('size', float),
('growth', float),
('color', float, (4,))])
# Initialize the raindrops in random positions and with
# random growth rates.
rain_drops['position'] = np.random.uniform(0, 1, (n_drops, 2))
rain_drops['growth'] = np.random.uniform(50, 200, n_drops)
print(rain_drops)
"""
result:
[([0.70284885, 0.03590322], 0., 176.4511602 , [0., 0., 0., 0.])
([0.60838294, 0.49185854], 0., 60.51037667, [0., 0., 0., 0.])
([0.86525398, 0.65607663], 0., 168.00795695, [0., 0., 0., 0.])
([0.25812877, 0.14484747], 0., 80.17753717, [0., 0., 0., 0.])
([0.66021716, 0.90449213], 0., 121.94125106, [0., 0., 0., 0.])
([0.88306332, 0.51074725], 0., 92.4377108 , [0., 0., 0., 0.])
([0.68916433, 0.89543162], 0., 90.77596431, [0., 0., 0., 0.])
([0.7105655 , 0.68628326], 0., 144.88783652, [0., 0., 0., 0.])
([0.6894679 , 0.90203559], 0., 167.40736266, [0., 0., 0., 0.])
([0.92558218, 0.34232054], 0., 93.48654986, [0., 0., 0., 0.])]
"""
来源:https://blog.csdn.net/u011699626/article/details/122193581
标签:np.zeros,使用
0
投稿
猜你喜欢
python图片剪裁代码(图片按四个点坐标剪裁)
2021-03-18 21:07:05
Python 中使用 argparse 解析命令行参数
2023-10-26 14:10:42
十行Python代码实现文字识别功能
2024-01-01 14:55:09
Django框架模型简单介绍与使用分析
2021-04-06 02:59:19
sql server中错误日志errorlog的深入讲解
2024-01-23 11:57:58
SpringBoot 中使用JSP的方法示例
2023-06-16 22:35:09
asp利用aspjpeg给图片生成PNG透明水印
2009-03-20 14:01:00
图文详解Python中如何简单地解决Microsoft Visual C++ 14.0报错
2021-09-09 02:16:48
vue 图片裁剪上传组件的实现
2024-05-09 15:14:02
在Yii框架中使用PHP模板引擎Twig的例子
2023-11-14 11:30:30
深入分析SQL Server 存储过程
2024-01-19 21:18:09
Python中的图像处理之Python图像平滑操作
2021-06-05 12:56:06
一文带你深入了解Python中的二次移动平均法
2021-08-30 00:28:12
MySQL SQL 语法参考
2024-01-17 15:50:05
Mysql5.6修改root密码教程
2024-01-20 01:10:23
得到自增列的下一个会插入的id
2024-01-20 17:32:48
mysql5.5.28安装教程 超详细!
2024-01-15 16:02:05
Python字符串和其常用函数合集
2023-07-12 15:29:22
一个向上滚动代码
2010-02-10 12:29:00
Golang 函数执行时间统计装饰器的一个实现详解
2024-05-09 09:46:22