fliplr

Description of fliplr in MATLAB:

The fliplr function in MATLAB is used to flip the order of elements in an array from left to right along the second dimension. It essentially reverses the order of the elements along the specified dimension.

For example:

A = [1 2 3; 4 5 6];
B = fliplr(A);

After executing the above code, the value of B will be:

B =
     3     2     1
     6     5     4

This demonstrates how the fliplr function reverses the order of elements along the second dimension of the input array.