Package jline.lib.butools.dmap
Class CheckDMRAPRepresentationKt
-
- All Implemented Interfaces:
public final class CheckDMRAPRepresentationKt
-
-
Method Summary
Modifier and Type Method Description final static BooleancheckDMRAPRepresentation(MatrixCell H, Double prec)Checks if the input matrices define a discrete time MRAP. final static BooleancheckDMRAPRepresentation(Array<Matrix> H, Double prec)Overload for Array<Matrix>. -
-
Method Detail
-
checkDMRAPRepresentation
final static Boolean checkDMRAPRepresentation(MatrixCell H, Double prec)
Checks if the input matrices define a discrete time MRAP.
All matrices H0...HK must have the same size, the dominant eigenvalue of H0 is real and less than 1, and the rowsum of H0+H1+...+HK is 1 (up to the numerical precision).
- Parameters:
H- The H0...prec- Numerical precision, default value is 1e-14- Returns:
True if the matrices define a valid DMRAP
-
checkDMRAPRepresentation
final static Boolean checkDMRAPRepresentation(Array<Matrix> H, Double prec)
Overload for Array<Matrix>.
-
-
-
-