numpy.ndarray.__copy__ΒΆ
-
ndarray.
__copy__
([order])ΒΆ Return a copy of the array.
Parameters: order : {βCβ, βFβ, βAβ}, optional
If order is βCβ (False) then the result is contiguous (default). If order is βFortranβ (True) then the result has fortran order. If order is βAnyβ (None) then the result has fortran order only if the array already is in fortran order.