Nothing
###
### $Id: ones.R 29 2022-05-30 23:02:22Z proebuck $
###
### Create a matrix of all ones.
###
##-----------------------------------------------------------------------------
ones <- function(...) {
nargs <- length(dots <- list(...))
dims <- as.integer(if (nargs == 1 && is.size_t(dots[[1]])) {
dots[[1]]
} else {
unlist(dots)
})
if (length(dims) == 1) {
dims[2] <- dims[1]
}
if (!(length(dims) > 1)) {
stop("dimensions must be of length greater than 1")
} else if (!(all(dims > 0))) {
stop("dimensions must be a positive quantity")
}
array(1, dims)
}
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.