View source: R/ctmcProbabilistic.R
is.CTMCirreducible | R Documentation |
This function verifies whether a CTMC object is irreducible
is.CTMCirreducible(ctmc)
ctmc |
a ctmc-class object |
a boolean value as described above.
Vandit Jain
Continuous-Time Markov Chains, Karl Sigman, Columbia University
energyStates <- c("sigma", "sigma_star")
byRow <- TRUE
gen <- matrix(data = c(-3, 3,
1, -1), nrow = 2,
byrow = byRow, dimnames = list(energyStates, energyStates))
molecularCTMC <- new("ctmc", states = energyStates,
byrow = byRow, generator = gen,
name = "Molecular Transition Model")
is.CTMCirreducible(molecularCTMC)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.