Package jline.api.qsys
Class QsysLindleyResult
java.lang.Object
jline.api.qsys.QsysLindleyResult
Conditional waiting-time moments of one Lindley step.
Returned by Qsys_mm1_lindley and Qsys_hh1_lindley. Every
array is indexed by the supplied current waiting times, so
moments[i][m-1] is the m-th conditional raw moment at Wn[i].
Port of the MATLAB struct returned by qsys_mm1_lindley.m.
- Since:
- LINE 3.1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal double[]Conditional mean, one entry per supplied current waiting time.final intHighest moment order computed.final double[][]Conditional raw moments,moments[i][m-1]for order m.final double[]Conditional variance, one entry per supplied current waiting time. -
Constructor Summary
ConstructorsConstructorDescriptionQsysLindleyResult(double[] mean, double[] var, double[][] moments, int mmax) -
Method Summary
-
Field Details
-
mean
public final double[] meanConditional mean, one entry per supplied current waiting time. -
var
public final double[] varConditional variance, one entry per supplied current waiting time. -
moments
public final double[][] momentsConditional raw moments,moments[i][m-1]for order m. -
mmax
public final int mmaxHighest moment order computed.
-
-
Constructor Details
-
QsysLindleyResult
public QsysLindleyResult(double[] mean, double[] var, double[][] moments, int mmax)
-