numpy.flatiter.base#

属性

flatiter.base#

对被迭代的数组的引用.

示例

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