Package jline.api.mam

Class Map_scaleKt

  • All Implemented Interfaces:

    
    public final class Map_scaleKt
    
                        
    • 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_scale(Matrix D0, Matrix D1, Double newMean) Rescales the mean inter-arrival time of a Markovian Arrival Process (MAP) to a specified new mean.
      final static MatrixCell map_scale(MatrixCell MAP, Double newMean) Rescales the mean inter-arrival time of a MAP stored in a MatrixCell that contains the MAP's transition matrices.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • map_scale

         final static MatrixCell map_scale(Matrix D0, Matrix D1, Double newMean)

        Rescales the mean inter-arrival time of a Markovian Arrival Process (MAP) to a specified new mean.

        This method adjusts the transition matrices D0 and D1 of the MAP to achieve a desired mean inter-arrival time while preserving the structure and relative rates of transitions. The MAP is represented by two matrices: D0 and D1, where D0 is the hidden transition matrix and D1 is the visible transition matrix.

        Parameters:
        D0 - the hidden transition matrix of the MAP
        D1 - the visible transition matrix of the MAP
        newMean - the desired new mean inter-arrival time
        Returns:

        a MatrixCell containing the scaled MAP transition matrices

      • map_scale

         final static MatrixCell map_scale(MatrixCell MAP, Double newMean)

        Rescales the mean inter-arrival time of a MAP stored in a MatrixCell that contains the MAP's transition matrices.

        Parameters:
        MAP - a MatrixCell containing the transition matrices D0 and D1 of the MAP
        newMean - the desired new mean inter-arrival time
        Returns:

        a MatrixCell containing the scaled MAP transition matrices