Package jline.api.mam

Class Map_gamma2Kt

  • All Implemented Interfaces:

    
    public final class Map_gamma2Kt
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.