generate.SPOTIS.bounds {RMCDA} | R Documentation |
Generate bounds for criteria from a decision matrix
Description
Generate bounds for criteria from a decision matrix
Usage
generate.SPOTIS.bounds(matrix)
Arguments
matrix |
A numeric matrix or data frame where rows represent alternatives and columns represent criteria. |
Value
A numeric matrix with two columns: minimum and maximum bounds for each criterion.
Examples
# Decision matrix
matrix <- matrix(c(96, 145, 200,
100, 145, 200,
120, 170, 80,
140, 180, 140,
100, 110, 30), nrow = 5, byrow = TRUE)
# Generate bounds
bounds <- generate.SPOTIS.bounds(matrix)
[Package RMCDA version 0.3 Index]