R/front_edge.R

Defines functions which_points_on_edge

Documented in which_points_on_edge

##' Determine which points are on the edge of a Pareto-front approximation.
##'
##' @param front Pareto-front approximation.
##' 
##' @return An integer vector containing the indicies of the points
##' (columns) of \code{front} which are on the edge of the
##' Pareto-front approximation.
##'
##' @author Olaf Mersmann \email{olafm@@statistik.tu-dortmund.de}
##'
##' @export
which_points_on_edge <- function(front) {
  which(.Call(do_which_points_on_edge, front))
}

Try the emoa package in your browser

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

emoa documentation built on May 31, 2023, 8:40 p.m.