-
nditer.copy()
-
Get a copy of the iterator in its current state.
Examples
12345678>>> 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
))
nditer.copy()

2025-01-10 15:47:30
Please login to continue.