Class CdfFromME

java.lang.Object
jline.lib.butools.ph.CdfFromME

public final class CdfFromME extends Object
  • Method Details

    • cdfFromME

      public static double[] cdfFromME(Matrix alpha, Matrix A, double[] x)
      Returns the cumulative distribution function of a matrix-exponential distribution.
      Parameters:
      alpha - The initial vector of the matrix-exponential distribution.
      A - The matrix parameter of the matrix-exponential distribution.
      x - The points at which the CDF will be computed.
      Returns:
      The values of the CDF at the corresponding "x" values.
    • cdfFromPH

      public static double[] cdfFromPH(Matrix alpha, Matrix A, double[] x)
      Returns the cumulative distribution function of a phase-type distribution.
    • cdfFromME

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

      public static double[] cdfFromPH(double[] alpha, Matrix A, double[] x)
      Overload for double[] alpha.