MATLAB matrix flip functions
Flips matrices either left-right or up-down.
fliplr(object) flipud(object)
object |
vector or matrix to be flipped |
These are S4 generic functions.
Return value is the same type as argument object
.
P. Roebuck proebuck@mdanderson.org
fliplr(1:9) flipud(1:9) # same as previous since vectors have no orientation in R fliplr(matrix(1:9, 3, 3, byrow=TRUE)) flipud(matrix(1:9, 3, 3, byrow=TRUE))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.