R/rasch_pairwise_compute_eps.R

Defines functions rasch_pairwise_compute_eps

## File Name: rasch_pairwise_compute_eps.R
## File Version: 0.02


rasch_pairwise_compute_eps <- function(x)
{
    I <- length(x)+1
    eps <- rep(1,I)
    eps[2:I] <- exp(-x)
    return(eps)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.