You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an integer, then the result will be a 1-D array of that length.
571
573
One shape dimension can be -1. In this case, the value is inferred from the length of the array and remaining dimensions.
572
574
573
-
order : {‘C’, ‘F’, ‘A’}, optional
575
+
order : {'C', 'F', 'A'}, optional
574
576
Read the elements of a using this index order, and place the elements into the reshaped array using this index order.
575
-
‘C’ means to read / write the elements using C-like index order, with the last axis index changing fastest, back to the first axis index changing slowest.
576
-
‘F’ means to read / write the elements using Fortran-like index order, with the first index changing fastest, and the last index changing slowest.
577
-
Note that the ‘C’ and ‘F’ options take no account of the memory layout of the underlying array, and only refer to the order of indexing.
578
-
‘A’ means to read / write the elements in Fortran-like index order if a is Fortran contiguous in memory, C-like order otherwise.
577
+
'C' means to read / write the elements using C-like index order, with the last axis index changing fastest, back to the first axis index changing slowest.
578
+
'F' means to read / write the elements using Fortran-like index order, with the first index changing fastest, and the last index changing slowest.
579
+
Note that the 'C' and 'F' options take no account of the memory layout of the underlying array, and only refer to the order of indexing.
580
+
'A' means to read / write the elements in Fortran-like index order if a is Fortran contiguous in memory, C-like order otherwise.
0 commit comments