R/dmeasure-pomp.R

## evaluate the measurement model density function

dmeasure.internal <- function (object, y, x, times, params, log = FALSE, .getnativesymbolinfo = TRUE, ...) {
  pompLoad(object)
  rv <- .Call(do_dmeasure,object,y,x,times,params,log,.getnativesymbolinfo)
  pompUnload(object)
  rv
}

setMethod("dmeasure",
          signature=signature("pomp"),
          function (object, y, x, times, params, log = FALSE, ...)
          dmeasure.internal(object=object,y=y,x=x,times=times,params=params,log=log,...)
          )

Try the pomp package in your browser

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

pomp documentation built on May 2, 2019, 4:09 p.m.