Package jline.api.qsys
Class QsysTandemPathResult
java.lang.Object
jline.api.qsys.QsysTandemPathResult
Waiting times and epochs of a tandem sample path.
Returned by Qsys_tandem_lindley. Every matrix is indexed
[customer][station].
- Since:
- LINE 3.1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal double[][]Departure epochs of each customer from each station.final double[][]Interarrival times,G[n][k]between customers n and n+1 at station k, so column 0 is the external stream.final double[][]Sojourn times, W + S.final double[][]Waiting times,W[n][k]for customer n at station k. -
Constructor Summary
ConstructorsConstructorDescriptionQsysTandemPathResult(double[][] W, double[][] G, double[][] T, double[][] departure) -
Method Summary
-
Field Details
-
W
public final double[][] WWaiting times,W[n][k]for customer n at station k. -
G
public final double[][] GInterarrival times,G[n][k]between customers n and n+1 at station k, so column 0 is the external stream. The last row is NaN, there being no customer N+1 to separate from. -
T
public final double[][] TSojourn times, W + S. -
departure
public final double[][] departureDeparture epochs of each customer from each station.
-
-
Constructor Details
-
QsysTandemPathResult
public QsysTandemPathResult(double[][] W, double[][] G, double[][] T, double[][] departure)
-