Package jline.solvers
Class NetworkMomentStationResult
java.lang.Object
jline.solvers.NetworkMomentStationResult
Raw moment results behind
NetworkMomentStationTable, mirroring the
mom struct that MATLAB's getMomentStationTable returns as its
second output.
Carries the per-station-total moments together with the cross-station
covariance matrix Cov that the table does not show, and the underlying
Pfqn_sens_mom (exact) or
Pfqn_sens_linearizer (approximate) result.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionM x M, Cov(i,j) = Cov[Q_i,Q_j]; the diagonal isVar.doubleAsymmetry residual of the underlying recursion.Matrix[][]The general (M x G x M x G) covariance,CovG[i][g]being an M x G matrix whose (j,g2) entry is Cov[Q_(i,g),Q_(j,g2)].The exact result, non-null when the method was"exact".The Linearizer result, non-null when the method was"lin".M x 1, m(i) = E[Q_i], the mean total queue length at station i.M x 1, E[Q_i^2].M x 1, E[Q_i^3].M x 1, skewness of Q_i; NaN where the variance vanishes.M x 1, Var[Q_i]. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
exact
The exact result, non-null when the method was"exact". -
linearizer
The Linearizer result, non-null when the method was"lin". -
m
M x 1, m(i) = E[Q_i], the mean total queue length at station i. -
Var
M x 1, Var[Q_i]. -
Cov
M x M, Cov(i,j) = Cov[Q_i,Q_j]; the diagonal isVar. Non-null only in the single-group case, i.e. always for the station table and for the chain table of a single-chain model, mirroring the collapse of the MATLAB reference. -
CovG
The general (M x G x M x G) covariance,CovG[i][g]being an M x G matrix whose (j,g2) entry is Cov[Q_(i,g),Q_(j,g2)]. Populated whenever the exact path ran, and the only form available when there is more than one group (more than one chain), where cross-chain and cross-station covariances both exist. Null on the Linearizer path, which approximates station totals only. -
M2
M x 1, E[Q_i^2]. -
M3
M x 1, E[Q_i^3]. -
Skew
M x 1, skewness of Q_i; NaN where the variance vanishes. -
CovAsym
public double CovAsymAsymmetry residual of the underlying recursion. Roundoff for the exact method; a genuine measure of approximation error for the Linearizer, whose fixed point does not enforce the symmetry the product form guarantees.
-
-
Constructor Details
-
NetworkMomentStationResult
public NetworkMomentStationResult()
-