mindspore.numpy.flipud

mindspore.numpy.flipud(m)[source]

Flips the entries in each column in the up/down direction. Rows are preserved, but appear in a different order than before.

Note

On CPU, the supported dtypes are np.float16, np.float32, and np.float64.

Parameters

m (Tensor) – Input array.

Returns

Tensor.

Raises

TypeError – if the input is not a tensor.

Supported Platforms:

GPU

Example

>>> import mindspore.numpy as np
>>> A = np.arange(8.0).reshape((2,2,2))
>>> output = np.flipud(A)
>>> print(output)
[[[4., 5.],
[6., 7.]],
[[0., 1.],
[2., 3.]]]