R/selectAll.R

Defines functions selectAll

Documented in selectAll

#' @title selectAll
#' 
#' @description Select all Design Points. 
#' Returns the whole set of proposed design points.
#' It is a dummy function, used as the default for more sophisticated selection procedures.
#'
#' @param x matrix of design points
#' @param y matrix of function values 
#' @param control list of controls
#' 
#' @return This function returns a list with:
  #' \describe{
  #'		\item{\code{x}}{matrix of selected design points.}
  #'		\item{\code{y}}{ matrix of selected function values.}
  #' }
#'
#' @export
#' @keywords internal
#' 
selectAll <- function(x, y, control){
 return( list(x=x, y=y))
}

Try the SPOT package in your browser

Any scripts or data that you put into this service are public.

SPOT documentation built on June 26, 2022, 1:06 a.m.