Class QsysLindleyResult

java.lang.Object
jline.api.qsys.QsysLindleyResult

public class QsysLindleyResult extends Object
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

    Fields
    Modifier and Type
    Field
    Description
    final double[]
    Conditional mean, one entry per supplied current waiting time.
    final int
    Highest 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

    Constructors
    Constructor
    Description
    QsysLindleyResult(double[] mean, double[] var, double[][] moments, int mmax)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • mean

      public final double[] mean
      Conditional mean, one entry per supplied current waiting time.
    • var

      public final double[] var
      Conditional variance, one entry per supplied current waiting time.
    • moments

      public final double[][] moments
      Conditional raw moments, moments[i][m-1] for order m.
    • mmax

      public final int mmax
      Highest moment order computed.
  • Constructor Details

    • QsysLindleyResult

      public QsysLindleyResult(double[] mean, double[] var, double[][] moments, int mmax)