fliplr {matlab} | R Documentation |
MATLAB matrix flip functions
Description
Flips matrices either left-right or up-down.
Usage
fliplr(object)
flipud(object)
Arguments
object |
vector or matrix to be flipped |
Details
These are S4 generic functions.
Value
Return value is the same type as argument object
.
Author(s)
P. Roebuck proebuck1701@gmail.com
See Also
Examples
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))
[Package matlab version 1.0.4.1 Index]