R/tam_linking_function_haebara_loss.R

Defines functions tam_linking_function_haebara_loss

## File Name: tam_linking_function_haebara_loss.R
## File Version: 0.03


tam_linking_function_haebara_loss <- function(x, type, pow_rob_hae=1, eps=1e-4)
{
    if (type=="Hae"){
        y <- x^2
    }
    if (type=="RobHae"){
        y <- (x^2 + eps)^(pow_rob_hae/2)
    }
    return(y)
}

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.