Package jline.solvers.ln
Class LNTranAvgResult
java.lang.Object
jline.solvers.ln.LNTranAvgResult
Transient average metrics of a layered network, assembled block-diagonally
across the ensemble layers by
SolverLN.getTranAvg().
Each layer e occupies a disjoint block of rows (its stations) and columns (its classes), mirroring the MATLAB SolverLN.getTranAvg cell-array layout. Off-block cells and disabled metrics are left null.
Each populated cell QNt[i][r] (and UNt, TNt) is a
column vector of length Tmax holding the metric time series; t[i][r]
is the matching column vector of time instants for that cell.
-
Field Summary
FieldsModifier and TypeFieldDescriptionMatrix[][]Transient queue lengths, block-diagonal [rows][cols]; each cell Tmax x 1 or null.Matrix[][]Time instants per cell, block-diagonal [rows][cols]; each cell Tmax x 1 or null.Matrix[][]Transient throughputs, block-diagonal [rows][cols]; each cell Tmax x 1 or null.Matrix[][]Transient utilizations, block-diagonal [rows][cols]; each cell Tmax x 1 or null. -
Constructor Summary
ConstructorsConstructorDescriptionLNTranAvgResult(Matrix[][] QNt, Matrix[][] UNt, Matrix[][] TNt, Matrix[][] t) -
Method Summary
-
Field Details
-
QNt
Transient queue lengths, block-diagonal [rows][cols]; each cell Tmax x 1 or null. -
UNt
Transient utilizations, block-diagonal [rows][cols]; each cell Tmax x 1 or null. -
TNt
Transient throughputs, block-diagonal [rows][cols]; each cell Tmax x 1 or null. -
t
Time instants per cell, block-diagonal [rows][cols]; each cell Tmax x 1 or null.
-
-
Constructor Details
-
LNTranAvgResult
-