Class CdfFromMG

java.lang.Object
jline.lib.butools.dph.CdfFromMG

public final class CdfFromMG extends Object
  • Method Details

    • cdfFromMG

      public static double[] cdfFromMG(Matrix alpha, Matrix A, int[] x)
      Returns the cumulative distribution function of a matrix-geometric distribution.
      Parameters:
      alpha - The initial vector of the matrix-geometric distribution.
      A - The matrix parameter of the matrix-geometric distribution.
      x - Vector of non-negative integers at which to compute the CDF.
      Returns:
      The probabilities that the matrix-geometrically distributed random variable is less or equal to the corresponding "x" values.
    • cdfFromMG

      public static double[] cdfFromMG(double[] alpha, Matrix A, int[] x)
      Overload for double[] alpha.
    • cdfFromMG

      public static double cdfFromMG(Matrix alpha, Matrix A, int x)
      Overload for single integer x.
    • cdfFromMG

      public static double cdfFromMG(double[] alpha, Matrix A, int x)
      Overload for double[] alpha and single integer x.