Package jline.api.mam
Class Map_cdfKt
-
- All Implemented Interfaces:
public final class Map_cdfKt
-
-
Method Summary
Modifier and Type Method Description final static Matrix
map_cdf(Matrix D0, Matrix D1, Matrix points)
Computes the cumulative distribution function (CDF) of the inter-arrival times of a Markovian Arrival Process (MAP). final static Matrix
map_cdf(MatrixCell MAP, Matrix points)
Computes the cumulative distribution function (CDF) of the inter-arrival times of a MAP stored in a MatrixCell that contains the MAP's transition matrices. -
-
Method Detail
-
map_cdf
final static Matrix map_cdf(Matrix D0, Matrix D1, Matrix points)
Computes the cumulative distribution function (CDF) of the inter-arrival times of a Markovian Arrival Process (MAP).
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. The CDF values are calculated for a given set of points, which represent the inter-arrival times.
- Parameters:
D0
- the hidden transition matrix of the MAPD1
- the visible transition matrix of the MAPpoints
- a matrix containing the points at which to compute the CDF- Returns:
a matrix containing the CDF values corresponding to the provided points
-
map_cdf
final static Matrix map_cdf(MatrixCell MAP, Matrix points)
Computes the cumulative distribution function (CDF) 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 MAPpoints
- a matrix containing the points at which to compute the CDF- Returns:
a matrix containing the CDF values corresponding to the provided points
-
-
-
-