generate.SPOTIS.bounds: Generate bounds for criteria from a decision matrix

View source: R/SPOTIS.R

generate.SPOTIS.boundsR 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)


RMCDA documentation built on June 8, 2025, 11:14 a.m.