R/pder1.grm.R

Defines functions pder1.grm

# p' = a*(p.ku*q.ku - p.kl*q.kl)

pder1.grm <-
function(theta, params){
  
# Call the appropriate c-function:
  pder1 <- .Call("pder1grm", theta, params)
  
# Matrix of (n_ppl * n_cat) x n_it:
  return(pder1)
 
} # END pder1.grm FUNCTION

Try the catIrt package in your browser

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

catIrt documentation built on May 28, 2022, 1:09 a.m.