R/getStreakBacksweep.R

"getStreakBacksweep" <- function(streakT, k, mu, x) {
  Y <- matrix(0, length(x), length(k))
  for (i in 1:length(k)) {
    x1 <- exp(-k[i] * (x - mu + streakT))
    x2 <- exp(-k[i] * ((streakT / 2) - (x - mu)))
    x3 <- exp(-k[i] * streakT)
    Y[, i] <- (x1 + x2) / (1 - x3)
  }
  Y
}

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.