R/getMvec.R

"getMvec" <-
  function(model) {
    # dependent params. are specified as list or vector
    # in prel; get their indices in the parameter group
    # in its vectorized form

    ppars <- intersect(slotNames(theta()), slotNames(model))
    pinde <- vector("list", length(ppars))
    for (p in 1:length(pinde)) pinde[[p]] <- vector()
    names(pinde) <- ppars

    pinde
  }

Try the TIMP package in your browser

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

TIMP documentation built on Dec. 28, 2022, 3:06 a.m.