NumPy numpy.fromiter()的使用
此函数用于使用可迭代对象创建一个ndarray。它返回一个一维的ndarray对象。
语法
numpy.fromiter(iterable, dtype, count = - 1)
参数
接受以下参数。
- 可迭代对象:表示一个可迭代的对象。
- dtype:表示结果数组项的数据类型。
- count:表示从缓冲区中读取的数组项目数。
返回值
通过使用可迭代对象创建的数组被返回。
示例
import numpy as np
list = [0,2,4,6]
it = iter(list)
x = np.fromiter(it, dtype = float)
print(x)
print(type(x))
输出结果:
[0. 2. 4. 6.]