Package jline.lib.butools.map
Class RandomMAPKt
-
- All Implemented Interfaces:
public final class RandomMAPKt
-
-
Method Summary
Modifier and Type Method Description final static MAPRepresentationrandomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials, Double prec, Random random)Returns a random Markovian arrival process with given mean value. final static MAPRepresentationrandomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials, Double prec)Returns a random Markovian arrival process with given mean value. final static MAPRepresentationrandomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials)Returns a random Markovian arrival process with given mean value. final static MAPRepresentationrandomMAP(Integer order, Double mean, Integer zeroEntries)Returns a random Markovian arrival process with given mean value. final static MAPRepresentationrandomMAP(Integer order, Double mean)Returns a random Markovian arrival process with given mean value. final static MAPRepresentationrandomMAP(Integer order)Returns a random Markovian arrival process with given mean value. -
-
Method Detail
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials, Double prec, Random random)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAPmean- The mean inter-arrival times of the MAP (default 1.zeroEntries- The number of zero entries in the D0 and D1 matrices (default 0)maxTrials- The maximum number of trials to find a proper MAP (default 1000)prec- Numerical precision for checking the irreducibility (default 1e-7)random- Random number generator (optional)- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials, Double prec)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAPmean- The mean inter-arrival times of the MAP (default 1.zeroEntries- The number of zero entries in the D0 and D1 matrices (default 0)maxTrials- The maximum number of trials to find a proper MAP (default 1000)prec- Numerical precision for checking the irreducibility (default 1e-7)- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order, Double mean, Integer zeroEntries, Integer maxTrials)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAPmean- The mean inter-arrival times of the MAP (default 1.zeroEntries- The number of zero entries in the D0 and D1 matrices (default 0)maxTrials- The maximum number of trials to find a proper MAP (default 1000)- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order, Double mean, Integer zeroEntries)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAPmean- The mean inter-arrival times of the MAP (default 1.zeroEntries- The number of zero entries in the D0 and D1 matrices (default 0)- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order, Double mean)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAPmean- The mean inter-arrival times of the MAP (default 1.- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
randomMAP
@JvmOverloads() final static MAPRepresentation randomMAP(Integer order)
Returns a random Markovian arrival process with given mean value.
- Parameters:
order- The size of the MAP- Returns:
The MAPRepresentation containing D0 and D1 matrices
-
-
-
-