Package jline.api.mam

Class Map_count_meanKt

    • 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_count_mean(MatrixCell MAP, DoubleArray t) Computes the mean of the counting process over multiple specified interval lengths for a given Markovian Arrival Process (MAP).
      final static Double map_count_mean(MatrixCell MAP, Double t) Computes the mean of the counting process over a specified interval length for 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_count_mean

         final static DoubleArray map_count_mean(MatrixCell MAP, DoubleArray t)

        Computes the mean of the counting process over multiple specified interval lengths for a given Markovian Arrival Process (MAP).

        This function calculates the mean number of events that occur in a MAP over each interval length provided in the array t. It uses the arrival rate of the MAP, denoted as lambda (λ), and multiplies it by each interval length. The results are returned in an array corresponding to the input intervals.

        Parameters:
        MAP - The Markovian Arrival Process stored in a MatrixCell.
        t - An array of interval lengths over which to compute the mean.
        Returns:

        An array of doubles, where each element represents the mean of the counting process over the corresponding interval length in t.

      • map_count_mean

         final static Double map_count_mean(MatrixCell MAP, Double t)

        Computes the mean of the counting process over a specified interval length for a given Markovian Arrival Process (MAP).

        This function calculates the mean number of events that occur in a MAP over an interval of length t. It uses the arrival rate of the MAP, denoted as lambda (λ), and multiplies it by the interval length t.

        Parameters:
        MAP - The Markovian Arrival Process stored in a MatrixCell.
        t - The length of the interval over which to compute the mean.
        Returns:

        The mean of the counting process over the interval t.