Package jline.api.mam
Class Map_infgen
java.lang.Object
jline.api.mam.Map_infgen
-
Method Summary
Modifier and TypeMethodDescriptionstatic Matrixmap_infgen(MatrixCell MAP) Computes the infinitesimal generator matrix (Q) of the Continuous-Time Markov Chain (CTMC) underlying a Markovian Arrival Process (MAP).static Matrixmap_infgen(Matrix D0, Matrix D1) Computes the infinitesimal generator matrix (Q) of the Continuous-Time Markov Chain (CTMC) underlying a Markovian Arrival Process (MAP).
-
Method Details
-
map_infgen
Computes the infinitesimal generator matrix (Q) of the Continuous-Time Markov Chain (CTMC) underlying a Markovian Arrival Process (MAP). This function calculates the Q matrix by summing the hidden (D0) and visible (D1) transition matrices of the MAP. The resulting matrix Q represents the infinitesimal generator of the CTMC, which describes the rate of transitions between states.- Parameters:
D0- The hidden transition matrix of the MAP, representing transitions without visible events.D1- The visible transition matrix of the MAP, representing transitions with visible events.- Returns:
- The CTMC infinitesimal generator matrix Q.
-
map_infgen
Computes the infinitesimal generator matrix (Q) of the Continuous-Time Markov Chain (CTMC) underlying a Markovian Arrival Process (MAP). This is a convenience method that extracts the D0 and D1 matrices from a given MAP stored in a MatrixCell and computes the Q matrix. The resulting matrix Q represents the infinitesimal generator of the CTMC, describing the rate of transitions between states.- Parameters:
MAP- The Markovian Arrival Process stored in a MatrixCell, containing the (D0, D1) matrices.- Returns:
- The CTMC infinitesimal generator matrix Q.
-