Package jline.api.mam
Class Map_momentKt
-
- All Implemented Interfaces:
public final class Map_momentKt
-
-
Method Summary
Modifier and Type Method Description final static Double
map_moment(Matrix D0, Matrix D1, Integer order)
Computes the raw moments of the inter-arrival times of a Markovian Arrival Process (MAP). final static Double
map_moment(MatrixCell MAP, Integer order)
Computes the raw moments of the inter-arrival times of a MAP stored in a MatrixCell that contains the MAP's transition matrices. -
-
Method Detail
-
map_moment
final static Double map_moment(Matrix D0, Matrix D1, Integer order)
Computes the raw moments of the inter-arrival times of a Markovian Arrival Process (MAP).
The raw moment of a given order provides a measure of the shape of the distribution of inter-arrival times. The MAP is represented by two matrices: D0 and D1. D0 is the hidden transition matrix, representing transitions without an observed event, while D1 is the visible transition matrix, representing transitions with an observed event.
- Parameters:
D0
- the hidden transition matrix of the MAPD1
- the visible transition matrix of the MAPorder
- the moment order, i.e.- Returns:
the raw moment of the inter-arrival times of the specified order
-
map_moment
final static Double map_moment(MatrixCell MAP, Integer order)
Computes the raw moments of the inter-arrival times of a MAP stored in a MatrixCell that contains the MAP's transition matrices.
- Parameters:
MAP
- a MatrixCell containing the transition matrices D0 and D1 of the MAPorder
- the moment order, i.e.- Returns:
the raw moment of the inter-arrival times of the specified order
-
-
-
-