R/tam_parameter_change.R

Defines functions tam_parameter_change

## File Name: tam_parameter_change.R
## File Version: 0.01

tam_parameter_change <- function( xsi, oldxsi)
{
    xsi <- as.vector(xsi)
    oldxsi <- as.vector(oldxsi)
    res <- max( abs( xsi - oldxsi ) )
    return(res)
}

Try the TAM package in your browser

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

TAM documentation built on Aug. 29, 2022, 1:05 a.m.