R/muVec.R

Defines functions muVec

Documented in muVec

muVec <- function(t, y)
{
  MVec <- numeric(length(t))
  for(i in 1:length(t))
  {
    MVec[i] <- y * integrate(find1, 0, 1, t[i])$value
  }
  return(MVec)
}
ChrisKust/rexpar documentation built on May 6, 2019, 11:48 a.m.