bundles / numpy latest / numpy / flipud
_ArrayFunctionDispatcher
numpy:flipud
source: /dev/numpy/build-install/usr/lib/python3.14/site-packages/numpy/lib/_twodim_base_impl.py :118
Signature
def flipud ( m ) Summary
Reverse the order of elements along axis 0 (up/down).
Extended Summary
For a 2-D array, this flips the entries in each column in the up/down direction. Rows are preserved, but appear in a different order than before.
Parameters
m: array_likeInput array.
Returns
out: array_likeA view of
mwith the rows reversed. Since a view is returned, this operation is .
Notes
Equivalent to m[::-1, ...] or np.flip(m, axis=0). Requires the array to be at least 1-D.
Examples
import numpy as np A = np.diag([1.0, 2, 3])✓
A np.flipud(A)✗
rng = np.random.default_rng() A = rng.normal(size=(2,3,5))✓
np.all(np.flipud(A) == A[::-1,...])
✗np.flipud([1,2])
✓See also
- flip
Flip array in one or more dimensions.
- fliplr
Flip array in the left/right direction.
- rot90
Rotate array counterclockwise.
Aliases
-
numpy.flipud