generatorToTransitionMatrix | R Documentation |
The transition matrix of the embedded DTMC is inferred from the CTMC's generator
generatorToTransitionMatrix(gen, byrow = TRUE)
gen |
The generator matrix |
byrow |
Flag to determine if rows (columns) sum to 0 |
Returns the transition matrix.
Sai Bhargav Yalamanchi
Introduction to Stochastic Processes with Applications in the Biosciences (2013), David F. Anderson, University of Wisconsin at Madison
rctmc
,ctmc-class
energyStates <- c("sigma", "sigma_star")
byRow <- TRUE
gen <- matrix(data = c(-3, 3, 1, -1), nrow = 2,
byrow = byRow, dimnames = list(energyStates, energyStates))
generatorToTransitionMatrix(gen)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.