Learn R Programming

ror (version 0.8)

maximalvectors: Maximal Vector 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(performances)

Arguments

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

Value

  • Matrix of performances of the non-dominated alternatives

See Also

ror-package,maximalvectors.indices

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

nonDominated <- maximalvectors(performances)

Run the code above in your browser using DataLab