ph_laplace_der_nocons | R Documentation |
Computes the derivative of order n (without the multiplying constant) of the
Laplace transform at r
of a phase-type distribution with parameters
alpha
and S
.
ph_laplace_der_nocons(r, n, alpha, S)
r |
Vector of real values. |
n |
An integer. |
alpha |
Vector of initial probabilities. |
S |
Sub-intensity matrix. |
Laplace transform at r
.
alpha <- c(0.5, 0.3, 0.2)
S <- matrix(c(c(-1, 0, 0), c(1, -2, 0),c(0, 1, -5)), nrow = 3, ncol = 3)
ph_laplace_der_nocons(0.5, 2, alpha, S)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.