fliplr
Flip order of elements left to right
Syntax
- B = fliplr(A)
Input argument
- A - an array
Output argument
- B - flipped array.
Description
fliplr return an new array of A flipped left to right.
Example
x = eye(3, 2);
y = fliplr(x)
See also
History
Version | Description |
---|---|
1.0.0 | initial version |
Author
Allan CORNET