Package jline.api.mam

Class Map_renewalKt

    • 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_renewal(MatrixCell MAPIN) Creates a renewal MAP by removing all correlations from the input MAP.
      final static MatrixCell map_renewal(Matrix D0, Matrix D1) Creates a renewal MAP by removing all correlations from the input MAP.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • map_renewal

         final static MatrixCell map_renewal(MatrixCell MAPIN)

        Creates a renewal MAP by removing all correlations from the input MAP.

        This function takes a MAP and returns a renewal MAP process with the same cumulative distribution function (CDF) as the input MAP, but with no correlations between inter-arrival times. The resulting process is a renewal process.

        Parameters:
        MAPIN - The input MAP stored in a MatrixCell, containing the (D0, D1) matrices
        Returns:

        A MatrixCell representing the renewal MAP with no correlations

      • map_renewal

         final static MatrixCell map_renewal(Matrix D0, Matrix D1)

        Creates a renewal MAP by removing all correlations from the input MAP.

        This function takes a MAP defined by D0 and D1 matrices and returns a renewal MAP process with the same cumulative distribution function (CDF) as the input MAP, but with no correlations between inter-arrival times.

        Parameters:
        D0 - The hidden transition matrix of the input MAP
        D1 - The visible transition matrix of the input MAP
        Returns:

        A MatrixCell representing the renewal MAP with no correlations