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 Details

    • InvalidCovarianceMatrixException

      public InvalidCovarianceMatrixException()
      Constructor.
    • InvalidCovarianceMatrixException

      public InvalidCovarianceMatrixException(String message)
      Constructor with String containing message.
      Parameters:
      message - message indicating the cause of the exception.
    • InvalidCovarianceMatrixException

      public InvalidCovarianceMatrixException(String message, Throwable cause)
      Constructor with message and cause.
      Parameters:
      message - message describing the cause of the exception.
      cause - instance containing the cause of the exception.
    • InvalidCovarianceMatrixException

      public InvalidCovarianceMatrixException(Throwable cause)
      Constructor with cause.
      Parameters:
      cause - instance containing the cause of the exception.