Package jline.lib.butools.map
Class MRAPFromMomentsKt
-
- All Implemented Interfaces:
public final class MRAPFromMomentsKt
-
-
Method Summary
Modifier and Type Method Description final static MatrixCellmrapFromMoments(DoubleArray moms, MatrixCell Nm)Creates a continuous marked rational arrival process that has the same marginal and lag-1 joint moments as given. final static MatrixCellmrapFromMoments(DoubleArray moms, Array<Matrix> Nm)Overload for Array<Matrix>. final static Pair<Matrix, Matrix>rapFromMoments(DoubleArray moms, Matrix Nm)Creates a rational arrival process that has the same marginal and lag-1 joint moments as given. -
-
Method Detail
-
mrapFromMoments
final static MatrixCell mrapFromMoments(DoubleArray moms, MatrixCell Nm)
Creates a continuous marked rational arrival process that has the same marginal and lag-1 joint moments as given.
- Parameters:
moms- The list of marginal moments.Nm- The list of lag-1 joint moment matrices.- Returns:
The H0, H1, ..., HK matrices of the continuous marked rational process
-
mrapFromMoments
final static MatrixCell mrapFromMoments(DoubleArray moms, Array<Matrix> Nm)
Overload for Array<Matrix>.
-
rapFromMoments
final static Pair<Matrix, Matrix> rapFromMoments(DoubleArray moms, Matrix Nm)
Creates a rational arrival process that has the same marginal and lag-1 joint moments as given.
This is a convenience wrapper around mrapFromMoments for single arrival type (K=1).
- Parameters:
moms- The list of marginal momentsNm- The matrix of lag-1 joint moments (M x M)- Returns:
Pair of (H0, H1) matrices of the rational process
-
-
-
-