-
flatiter.coords
-
An N-dimensional tuple of current coordinates.
Examples
>>> x = np.arange(6).reshape(2, 3) >>> fl = x.flat >>> fl.coords (0, 0) >>> fl.next() 0 >>> fl.coords (0, 1)
flatiter.coords
2017-01-10 18:08:33
flatiter.coords
An N-dimensional tuple of current coordinates.
>>> x = np.arange(6).reshape(2, 3) >>> fl = x.flat >>> fl.coords (0, 0) >>> fl.next() 0 >>> fl.coords (0, 1)
Please login to continue.