Nothing
###
### $Id: flipud.R 22 2022-05-30 18:03:47Z proebuck $
###
##-----------------------------------------------------------------------------
test.flipud <- function(input, expected) {
output <- do.call(getFromNamespace("flipud", "matlab"), input)
identical(output, expected)
}
X.mat <- matrix(1:6, 3, 2)
flipud.expected.X.mat <- matrix(c(3:1, 6:4), 3, 2)
test.flipud(list(X.mat), flipud.expected.X.mat)
X.vec <- seq(1, 9, by = 2)
flipud.expected.X.vec <- seq(9, 1, by = -2)
test.flipud(list(X.vec), flipud.expected.X.vec)
## Since R does not really have concept of row/column vectors
## identical(test.fliplr(X.vec, flipud.expected.X.vec),
## test.flipud(X.vec, flipud.expected.X.vec))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.