R/print.CHull.R

Defines functions print.CHull

Documented in print.CHull

#' @export
#' @rdname CHull
#' @param x An object of the type produced by \code{\link{CHull}}
print.CHull <-
  function(x, ...){
    cat(paste(paste("Convex hull (",x$Bound,sep="")," bound)\n",sep=""))
    cat("\nSelected model(s):\n")
    print(x$Solution)
    cat(paste(paste("\n\nAll models on ",x$Bound,sep="")," bound:\n",sep=""))
    print(x$Hull)
  }

Try the multichull package in your browser

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

multichull documentation built on Sept. 12, 2024, 7:41 a.m.