Package jline.api.mam

Class Map_cdf

java.lang.Object
jline.api.mam.Map_cdf

public final class Map_cdf extends Object
  • Method Details

    • map_cdf

      public static Matrix map_cdf(Matrix D0, Matrix D1, Matrix points)
      Computes the cumulative distribution function (CDF) of the inter-arrival times of a Markovian Arrival Process (MAP). The MAP is represented by two matrices: D0 and D1. D0 is the hidden transition matrix, representing transitions without an observed event, while D1 is the visible transition matrix, representing transitions with an observed event. The CDF values are calculated for a given set of points.
      Parameters:
      D0 - the hidden transition matrix of the MAP
      D1 - the visible transition matrix of the MAP
      points - a matrix containing the points at which to compute the CDF
      Returns:
      a matrix containing the CDF values corresponding to the provided points
    • map_cdf

      public static Matrix map_cdf(MatrixCell MAP, Matrix points)
      CDF of MAP inter-arrival times when MAP is a MatrixCell.