Package jline.api.mam
Class Map_exponentialKt
-
- All Implemented Interfaces:
public final class Map_exponentialKt
-
-
Method Summary
Modifier and Type Method Description final static MatrixCell
map_exponential(Double mean)
Creates a Markovian Arrival Process (MAP) with an exponential inter-arrival time distribution. -
-
Method Detail
-
map_exponential
final static MatrixCell map_exponential(Double mean)
Creates a Markovian Arrival Process (MAP) with an exponential inter-arrival time distribution.
The method constructs a MAP where the inter-arrival times are exponentially distributed with a specified mean. This is achieved by setting the rate parameter (mu) of the exponential distribution as 1/mean. The resulting MAP has a single state with transition matrices D0 and D1 that define the exponential arrival process.
- Parameters:
mean
- the desired mean of the exponential inter-arrival times- Returns:
a MatrixCell containing the MAP transition matrices for the exponential distribution
-
-
-
-