Package jline.api.mam
Class Map_sumKt
-
- All Implemented Interfaces:
public final class Map_sumKt
-
-
Method Summary
Modifier and Type Method Description final static MatrixCell
map_sum(MatrixCell MAP, Integer n)
Computes the Markovian Arrival Process (MAP) representing the sum of n
identical MAPs.-
-
Method Detail
-
map_sum
final static MatrixCell map_sum(MatrixCell MAP, Integer n)
Computes the Markovian Arrival Process (MAP) representing the sum of
n
identical MAPs.This method constructs a new MAP with transition matrices
D0
andD1
by summingn
identical MAPs specified by the inputMAP
. The result is a larger MAP withn
times the number of states in the original MAP, where transitions in the resulting MAP are structured to reflect the cumulative behavior ofn
MAPs.- Parameters:
MAP
- the original MAP represented by a MatrixCell containing matricesD0
andD1
n
- the number of identical MAPs to sum- Returns:
a MatrixCell containing the transition matrices
D0
andD1
of the resulting summed MAP
-
-
-
-