R/calc.ta.k.R

Defines functions calc.ta.k

Documented in calc.ta.k

calc.ta.k <- function( tab, k )
{
###
### This function calculates the achievement function for the highest k priority levels
###
### Parameters
### tab = a list of named components that specifies the modified simplex tableau
### k = an integer priority level
###
    tab$ta <- t( tab$tu ) %*% tab$tb
    return( tab )
}

Try the goalprog package in your browser

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

goalprog documentation built on May 30, 2017, 5:07 a.m.