Learn R Programming

markovchain (version 0.3.1)

generatorToTransitionMatrix: Function to obtain the transition matrix from the generator.

Description

The transition matrix of the embedded DTMC is inferred from the CTMC's generator.

Usage

generatorToTransitionMatrix(gen, byrow = TRUE)

Arguments

gen
The generator matrix.
byrow
Flag to determine if rows (columns) sum to 0.

Value

  • Returns the transition matrix.

References

Introduction to Stochastic Processes with Applications in the Biosciences (2013), David F. Anderson, University of Wisconsin at Madison

See Also

rctmc,ctmc-class

Examples

Run this code
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)

Run the code above in your browser using DataLab