mindspore.numpy.fliplr

mindspore.numpy.fliplr(m)[源代码]

Flips the entries in each row in the left/right direction. Columns are preserved, but appear in a different order than before.

参数

m (Tensor) – Input array.

返回

Tensor.

异常

TypeError – If the input is not a tensor.

Supported Platforms:

GPU CPU

示例

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