NumPy
ufunc
numpy.exceptions
numpy.fft
numpy.linalg
numpy.random
numpy.testing
numpy.typing
numpy.distutils
flatiter.copy
method
Get a copy of the iterator as a 1-D array.
Examples
>>> import numpy as np >>> x = np.arange(6).reshape(2, 3) >>> x array([[0, 1, 2], [3, 4, 5]]) >>> fl = x.flat >>> fl.copy() array([0, 1, 2, 3, 4, 5])
previous
numpy.flatiter
next
numpy.iterable