Nothing
###
### VANDER.R Vandermonde matrix
###
vander <- function(x) {
n <- length(x)
if (n == 0) return(matrix(0, nrow=0, ncol=0))
if ((!is.numeric(x) && !is.complex(x)) || is.array(x))
stop("Argument 'x' must be a numeric or complex vector.")
A <- outer(x, seq(n-1, 0), "^")
return(A)
}
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.