Package jline.api.mam

Class Map_exponentialKt

    • 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 MatrixCell map_exponential(Double mean) Creates a Markovian Arrival Process (MAP) with an exponential inter-arrival time distribution.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • map_exponential

         final static MatrixCell map_exponential(Double mean)

        Creates a Markovian Arrival Process (MAP) with an exponential inter-arrival time distribution.

        The method constructs a MAP where the inter-arrival times are exponentially distributed with a specified mean. This is achieved by setting the rate parameter (mu) of the exponential distribution as 1/mean. The resulting MAP has a single state with transition matrices D0 and D1 that define the exponential arrival process.

        Parameters:
        mean - the desired mean of the exponential inter-arrival times
        Returns:

        a MatrixCell containing the MAP transition matrices for the exponential distribution