Array manipulation functions¶
The following functions conform to Python Array API standard:
|
Broadcasts one or more |
|
Broadcast an array to a new shape; returns the broadcasted |
|
Joins a sequence of arrays along an existing axis. |
|
Expands the shape of an array by inserting a new axis (dimension) of size one at the position specified by axis. |
|
Reverses the order of elements in an array x along the given axis. |
|
Moves axes of an array to new positions. |
|
Permute the axes (dimensions) of an array; returns the permuted array as a view. |
|
Repeat elements of an array on a per-element basis. |
|
Reshapes array |
|
Rolls array elements along a specified axis. |
|
Removes singleton dimensions (axes) from array x. |
|
Joins a sequence of arrays along a new axis. |
|
Repeat an input array x along each axis a number of times given by repetitions. |
|
Splits an array in a sequence of arrays along the given axis. |