cupy.fliplr#

cupy.fliplr(a)[source]#

Flip array in the left/right direction.

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

Parameters

a (ndarray) – Input array.

Returns

Output array.

Return type

ndarray

See also

numpy.fliplr()