Package jline.lib.butools.map
Class CheckMMAPRepresentationKt
-
- All Implemented Interfaces:
public final class CheckMMAPRepresentationKt
-
-
Method Summary
Modifier and Type Method Description final static BooleancheckMMAPRepresentation(MatrixCell D, Double prec)Checks if the input matrices define a continuous time MMAP. final static BooleancheckMMAPRepresentation(MatrixCell D)Checks if the input matrices define a continuous time MMAP. final static BooleancheckMMAPRepresentation(Array<Matrix> D, Double prec)Overload for Array<Matrix>. final static BooleancheckMMAPRepresentation(Array<Matrix> D)Overload for Array<Matrix>. -
-
Method Detail
-
checkMMAPRepresentation
@JvmOverloads() final static Boolean checkMMAPRepresentation(MatrixCell D, Double prec)
Checks if the input matrices define a continuous time MMAP.
All matrices D0...DK must have the same size, D0 must be a transient generator matrix, D1...DK have only non-negative elements, and the rowsum of D0+D1+...+DK is 0 (up to the numerical precision).
- Parameters:
D- The D0...prec- Numerical precision, default value is 1e-14- Returns:
True if the matrices define a valid MMAP
-
checkMMAPRepresentation
@JvmOverloads() final static Boolean checkMMAPRepresentation(MatrixCell D)
Checks if the input matrices define a continuous time MMAP.
All matrices D0...DK must have the same size, D0 must be a transient generator matrix, D1...DK have only non-negative elements, and the rowsum of D0+D1+...+DK is 0 (up to the numerical precision).
- Parameters:
D- The D0...- Returns:
True if the matrices define a valid MMAP
-
checkMMAPRepresentation
@JvmOverloads() final static Boolean checkMMAPRepresentation(Array<Matrix> D, Double prec)
Overload for Array<Matrix>.
-
checkMMAPRepresentation
@JvmOverloads() final static Boolean checkMMAPRepresentation(Array<Matrix> D)
Overload for Array<Matrix>.
-
-
-
-