numpy.flatiter.base#

属性

flatiter.base#

正在迭代的数组的引用。

示例

>>> import numpy as np
>>> x = np.arange(5)
>>> fl = x.flat
>>> fl.base is x
True