Nothing
#' Simulate from a zero-truncated non homogeneous Poisson Point Process (NHPPP) from
#' (t0, t_max) (thinning method) with piecewise constant_majorizer
#'
#' @description Sample zero-truncated NHPPP times using the thinning method
#' @param lambda (function) the instantaneous rate of the NHPPP.
#' A continuous function of time.
#' @param majorizer_vector (scalar, double) `K` constant majorizing rates, one per interval
#' @param time_breaks (vector, double) `K+1` time points defining `K` intervals
#' of constant rates:
#' `[t_1 = range_t[1], t_2)`: the first interval
#' `[t_k, t_{k+1})`: the `k`-th interval
#' `[t_{K}, t_{K+1} = range_t[2])`: the `K`-th (last) interval
#' @param atmost1 boolean, draw at most 1 event time
#'
#' @return a vector of event times (t_) with at least one element
#' @keywords internal
ztdraw_intensity_step <- function(lambda,
majorizer_vector,
time_breaks,
atmost1 = FALSE) {
len_lambda <- length(majorizer_vector)
lambda_maj_fun <- stats::approxfun(
x = time_breaks[1:len_lambda],
y = majorizer_vector, method = "constant", rule = 2, f = 0
)
while (TRUE) {
candidate_times <- draw_sc_step(lambda_vector = majorizer_vector, time_breaks = time_breaks, atmost1 = FALSE, atleast1 = TRUE)
u <- rng_stream_runif(size = length(candidate_times), minimum = 0, maximum = 1)
acceptance_prob <- lambda(candidate_times) / lambda_maj_fun(candidate_times)
if (!all(acceptance_prob <= 1 + 10^-6)) stop("lambda > lambda_maj\n")
candidate_times <- candidate_times[u < acceptance_prob]
if (length(candidate_times) > 0) {
if (atmost1) {
return(candidate_times[1])
} else {
return(candidate_times)
}
}
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.