Package jline.api.map
Object MAPM1PSCdfRespT
-
- All Implemented Interfaces:
public class MAPM1PSCdfRespTMAP/M/1-PS Sojourn Time Distribution
Computes the complementary distribution function of sojourn time in a MAP/M/1 processor-sharing queue using the algorithm from:
Masuyama, H., & Takine, T. (2003). Sojourn time distribution in a MAP/M/1 processor-sharing queue. Operations Research Letters, 31(6), 406-412.
LINE Development Team
-
-
Field Summary
Fields Modifier and Type Field Description public final static MAPM1PSCdfRespTINSTANCE
-
Method Summary
Modifier and Type Method Description final static DoubleArraycomputeCdf(Matrix C, Matrix D, Double mu, DoubleArray x, Double epsilon, Double epsilonPrime)Compute complementary sojourn time CDF for MAP/M/1-PS queue final static DoubleArraycomputeCdf(Matrix C, Matrix D, Double mu, DoubleArray x, Double epsilon)Compute complementary sojourn time CDF for MAP/M/1-PS queue final static DoubleArraycomputeCdf(Matrix C, Matrix D, Double mu, DoubleArray x)Compute complementary sojourn time CDF for MAP/M/1-PS queue -
-
Method Detail
-
computeCdf
@JvmOverloads() final static DoubleArray computeCdf(Matrix C, Matrix D, Double mu, DoubleArray x, Double epsilon, Double epsilonPrime)
Compute complementary sojourn time CDF for MAP/M/1-PS queue
- Parameters:
C- MAP C matrix (transitions without arrivals)D- MAP D matrix (transitions with arrivals)mu- Service rate (must be 0)x- Time points for CDF evaluationepsilon- Queue length truncation parameter (default: 1e-11)epsilonPrime- Uniformization truncation parameter (default: 1e-10)- Returns:
Complementary CDF values W̄(x) = PrW > x at each point in x
-
computeCdf
@JvmOverloads() final static DoubleArray computeCdf(Matrix C, Matrix D, Double mu, DoubleArray x, Double epsilon)
Compute complementary sojourn time CDF for MAP/M/1-PS queue
- Parameters:
C- MAP C matrix (transitions without arrivals)D- MAP D matrix (transitions with arrivals)mu- Service rate (must be 0)x- Time points for CDF evaluationepsilon- Queue length truncation parameter (default: 1e-11)- Returns:
Complementary CDF values W̄(x) = PrW > x at each point in x
-
computeCdf
@JvmOverloads() final static DoubleArray computeCdf(Matrix C, Matrix D, Double mu, DoubleArray x)
Compute complementary sojourn time CDF for MAP/M/1-PS queue
- Parameters:
C- MAP C matrix (transitions without arrivals)D- MAP D matrix (transitions with arrivals)mu- Service rate (must be 0)x- Time points for CDF evaluation- Returns:
Complementary CDF values W̄(x) = PrW > x at each point in x
-
-
-
-