Learn R Programming

ror (version 1.2)

maximalvectors.indices: Maximal Vector index computation

Description

Maximal Vector Computation using the BEST algorithm. The current version assumes ascending preferences, i.e. higher criterion evaluation means higher preferability (=better).

Usage

maximalvectors.indices(performances)

Arguments

performances
m x n performance matrix with m alternatives and n criteria

Value

See Also

ror-package,maximalvectors

Examples

Run this code
# Set Java VM memory use to 2g not to run out of heap space
options( java.parameters = "-Xmx2g" )
library(ror)

performances <- matrix(runif(n=50), nrow=10) # 10 alts, 5 crit

nonDominatedIdx <- maximalvectors.indices(performances)

Run the code above in your browser using DataLab