Package jline.inference.api
Class Infer_qmleKt
-
- All Implemented Interfaces:
public final class Infer_qmleKt
-
-
Method Summary
Modifier and Type Method Description final static Matrixinfer_qmle(Matrix Q, DoubleArray N, DoubleArray Z)Quick Maximum Likelihood Estimation closed-form formula. -
-
Method Detail
-
infer_qmle
final static Matrix infer_qmle(Matrix Q, DoubleArray N, DoubleArray 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)
-
-
-
-