numpy.broadcast.iters#

属性

broadcast.iters#

沿 self 的“组件”的迭代器元组。

返回一个 numpy.flatiter 对象元组,self 的每个“组件”对应一个。

示例

>>> import numpy as np
>>> x = np.array([1, 2, 3])
>>> y = np.array([[4], [5], [6]])
>>> b = np.broadcast(x, y)
>>> row, col = b.iters
>>> next(row), next(col)
(1, 4)