Nothing
rbf.alglib <- function(val, knots, rbase=2, layers=5, lambda=0, ...) {
x <- threads <- NULL; rm(x,threads)
if(is.null(dim(knots))) dim(knots) <- c(1,length(knots))
if(is.function(val)) val <- apply(knots,2,val,...)
model <- .Call(C_makerbf, rbind(knots,val), layers, rbase, lambda)
vectorfun(function(x,threads=getOption('chebpol.threads')) .Call(C_evalrbf, model, x, threads),
arity=nrow(knots),
domain=data.frame(apply(knots,1,range)))
}
#' Check whether chebpol has the ALGLIB library
#'
#' If ALGLIB was available at compile time, it can be used for compact
#' support radial basis function interpolations on scattered data.
#' This function checks whether ALGLIB is available.
#'
#' @return Returns TRUE if ALGLIB is available. Otherwise FALSE.
#' @export
havealglib <- function() .Call(C_havealglib)
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.