numpy.broadcast.iters #

属性

播送。迭代#

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

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

也可以看看

numpy.flatiter

例子

>>> 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)