Package com.irurueta.statistics
Class InvalidCovarianceMatrixException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.statistics.StatisticsException
com.irurueta.statistics.InvalidCovarianceMatrixException
- All Implemented Interfaces:
Serializable
public class InvalidCovarianceMatrixException
extends com.irurueta.statistics.StatisticsException
Exception thrown when providing an invalid covariance matrix.
Covariance matrices need to be symmetric and non-singular (i.e. symmetric
and positive definite).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.InvalidCovarianceMatrixException
(String message) Constructor with String containing message.InvalidCovarianceMatrixException
(String message, Throwable cause) Constructor with message and cause.Constructor with cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidCovarianceMatrixException
public InvalidCovarianceMatrixException()Constructor. -
InvalidCovarianceMatrixException
Constructor with String containing message.- Parameters:
message
- message indicating the cause of the exception.
-
InvalidCovarianceMatrixException
Constructor with message and cause.- Parameters:
message
- message describing the cause of the exception.cause
- instance containing the cause of the exception.
-
InvalidCovarianceMatrixException
Constructor with cause.- Parameters:
cause
- instance containing the cause of the exception.
-