Class MatrixException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hortonmachine.gears.utils.math.matrixes.MatrixException
-
- All Implemented Interfaces:
Serializable
public class MatrixException extends Exception
From: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald Mak- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringINVALID_DIMENSIONSstatic StringINVALID_INDEXstatic StringNO_CONVERGENCEstatic StringSINGULARstatic StringZERO_ROW
-
Constructor Summary
Constructors Constructor Description MatrixException(String msg)Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
INVALID_INDEX
public static final String INVALID_INDEX
- See Also:
- Constant Field Values
-
INVALID_DIMENSIONS
public static final String INVALID_DIMENSIONS
- See Also:
- Constant Field Values
-
ZERO_ROW
public static final String ZERO_ROW
- See Also:
- Constant Field Values
-
SINGULAR
public static final String SINGULAR
- See Also:
- Constant Field Values
-
NO_CONVERGENCE
public static final String NO_CONVERGENCE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MatrixException
public MatrixException(String msg)
Constructor.- Parameters:
msg- the error message
-
-