SciPy

This is documentation for an old release of NumPy (version 1.12.0). Read this page in the documentation of the latest stable release (version > 1.17).

numpy.nditer.copy

nditer.copy()

Get a copy of the iterator in its current state.

Examples

>>>
>>> x = np.arange(10)
>>> y = x + 1
>>> it = np.nditer([x, y])
>>> it.next()
(array(0), array(1))
>>> it2 = it.copy()
>>> it2.next()
(array(1), array(2))

Previous topic

numpy.nditer

Next topic

numpy.nditer.debug_print