Class Infer_qmle

java.lang.Object
jline.inference.api.Infer_qmle

public final class Infer_qmle extends Object
  • Method Details

    • infer_qmle

      public static Matrix infer_qmle(Matrix Q, double[] N, double[] Z)
      Quick Maximum Likelihood Estimation closed-form formula. D(i,j) = Q(i,j) / (N(j) - sum(Q(:,j))) * Z(j) / (1 + sum(Q(i,:)) - Q(i,j)/N(j))
      Parameters:
      Q - mean queue lengths matrix (M x R)
      N - population vector (1 x R or length-R array)
      Z - think time vector (1 x R or length-R array)
      Returns:
      demand estimates matrix (M x R)