View source: R/ctmcProbabilistic.R
ExpectedTime | R Documentation |
Returns expected hitting time from state i to state j
ExpectedTime(C,i,j,useRCpp)
C |
A CTMC S4 object |
i |
Initial state i |
j |
Final state j |
useRCpp |
logical whether to use Rcpp |
According to the theorem, holding times for all states except j should be greater than 0.
A numerical value that returns expected hitting times from i to j
Vandit Jain
Markovchains, J. R. Norris, Cambridge University Press
states <- c("a","b","c","d")
byRow <- TRUE
gen <- matrix(data = c(-1, 1/2, 1/2, 0, 1/4, -1/2, 0, 1/4, 1/6, 0, -1/3, 1/6, 0, 0, 0, 0),
nrow = 4,byrow = byRow, dimnames = list(states,states))
ctmc <- new("ctmc",states = states, byrow = byRow, generator = gen, name = "testctmc")
ExpectedTime(ctmc,1,4,TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.