Class LNTranAvgResult

java.lang.Object
jline.solvers.ln.LNTranAvgResult

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

    • QNt

      public Matrix[][] QNt
      Transient queue lengths, block-diagonal [rows][cols]; each cell Tmax x 1 or null.
    • UNt

      public Matrix[][] UNt
      Transient utilizations, block-diagonal [rows][cols]; each cell Tmax x 1 or null.
    • TNt

      public Matrix[][] TNt
      Transient throughputs, block-diagonal [rows][cols]; each cell Tmax x 1 or null.
    • t

      public Matrix[][] t
      Time instants per cell, block-diagonal [rows][cols]; each cell Tmax x 1 or null.
  • Constructor Details