numpy.flatiter.base#

屬性

flatiter.base#

對被迭代陣列的參考。

範例

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