Package jline.api.mam
Class Map_gamma2Kt
-
- All Implemented Interfaces:
public final class Map_gamma2Kt
-
-
Method Summary
Modifier and Type Method Description final static DoubleArray
map_gamma2(MatrixCell MAP)
Returns the largest non-unit eigenvalue (both real and imaginary parts) of the embedded Discrete-Time Markov Chain (DTMC) of a given Markovian Arrival Process (MAP). -
-
Method Detail
-
map_gamma2
final static DoubleArray map_gamma2(MatrixCell MAP)
Returns the largest non-unit eigenvalue (both real and imaginary parts) of the embedded Discrete-Time Markov Chain (DTMC) of a given Markovian Arrival Process (MAP).
The function first computes the embedded DTMC transition matrix from the provided MAP. It then calculates the eigenvalues of this matrix and identifies the largest non-unit eigenvalue based on its magnitude. The eigenvalue's real and imaginary parts are returned.
- Parameters:
MAP
- The Markovian Arrival Process stored in a MatrixCell.- Returns:
A double array of size 2, where the first element is the real part and the second element is the absolute value of the imaginary part of the largest non-unit eigenvalue.
-
-
-
-