numpy常用创建

这篇博客介绍了NumPy库中用于创建数组的方法,包括`numpy.empty`、`numpy.zeros`和`numpy.ones`,这些函数分别返回未初始化、全零和全一的数组。此外,还提到了`numpy.array`用于从已有数据创建数组的例子。博客内容侧重于数组创建和类型指定,是NumPy初学者的基础教程。
摘要由CSDN通过智能技术生成

Array creation routines

numpy.empty

Return a new array of given shape and type, without initializing
entries.
numpy.empty
Return a new array with the same shape and type as a given array.
numpy.empty_like

numpy.empty(shape, dtype=float, order=‘C’, *, like=None)

a = np.empty((2, 2, 2))

在这里插入图片描述

numpy.zeros

Return a new array of given shape and type, filled with zeros.
numpy.zeros
Return an array of zeros with the same shape and type as a given array.
numpy.zeros_like

numpy.zeros(shape, dtype=float, order=‘C’, *, like=None)

a = np.zeros((2, 2))

在这里插入图片描述

numpy.ones

Return a new array of given shape and type, filled with ones.
numpy.ones
Return an array of ones with the same shape and type as a given array.
numpy.ones_like

numpy.ones(shape, dtype=None, order=‘C’, *, like=None)

a = np.ones((2, 2, 2))

在这里插入图片描述

numpy.array

Create an array.
numpy.array

numpy.array(object, dtype=None, *, copy=True, order=‘K’, subok=False, ndmin=0, like=None)

b = [[1, 2, 3], [4, 5, 6]]
a = np.array(b)

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值