numpy.flatiter#
- class numpy.flatiter[source]#
用于迭代数组的扁平迭代器对象。
对于任何数组 x,
flatiter
迭代器由x.flat
返回。它允许像迭代一维数组一样迭代数组,无论是在 for 循环中还是通过调用其 next 方法。迭代以行主序、C 样式顺序进行(最后一个索引变化最快)。迭代器也可以使用基本切片或高级索引进行索引。
另请参阅
ndarray.flat
返回数组的扁平迭代器。
ndarray.flatten
返回数组的扁平副本。
备注
不能通过调用
flatiter
构造函数从 Python 代码直接构造flatiter
迭代器。示例
>>> import numpy as np >>> x = np.arange(6).reshape(2, 3) >>> fl = x.flat >>> type(fl) <class 'numpy.flatiter'> >>> for item in fl: ... print(item) ... 0 1 2 3 4 5
>>> fl[2:4] array([2, 3])
方法
copy
()获取迭代器作为一维数组的副本。