Class CheckMRAPRepresentation

java.lang.Object
jline.lib.butools.map.CheckMRAPRepresentation

public final class CheckMRAPRepresentation extends Object
  • Method Details

    • checkMRAPRepresentation

      public static boolean checkMRAPRepresentation(MatrixCell H, double prec)
      Checks if the input matrices define a continuous time MRAP. All matrices H0...HK must have the same size, the dominant eigenvalue of H0 has negative real part, and the rowsum of H0+H1+...+HK is 0 (up to the numerical precision).
      Parameters:
      H - The H0...HK matrices of the MRAP to check (as MatrixCell)
      prec - Numerical precision, default value is 1e-14
      Returns:
      True if the matrices define a valid MRAP
    • checkMRAPRepresentation

      public static boolean checkMRAPRepresentation(MatrixCell H)
    • checkMRAPRepresentation

      public static boolean checkMRAPRepresentation(Matrix[] H, double prec)
      Overload for Matrix[].
    • checkMRAPRepresentation

      public static boolean checkMRAPRepresentation(Matrix[] H)