MVT API

math.exceptions
Class SingularJacobianException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--math.exceptions.SingularMatrixException
                    |
                    +--math.exceptions.SingularJacobianException
All Implemented Interfaces:
java.io.Serializable

public class SingularJacobianException
extends SingularMatrixException

The class SingularJacobianException is used to signal when the jacobian determinant for a system of functions vanishes. It Extends the Exception class

Since:
JDK1.1
Author:
Eric Wright
See Also:
Serialized Form

Field Summary
 double[][] pt
           
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
SingularJacobianException()
          Creates a SingularJacobianException with no arguments
SingularJacobianException(java.lang.String reason)
          Creates a SingularJacobianException given one String argument containing a reason describing the Exception cause.
SingularJacobianException(java.lang.String reason, double[][] pt)
          Creates a SingularJacobianException given one String argument containing a reason describing the Exception cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

pt

public double[][] pt
Constructor Detail

SingularJacobianException

public SingularJacobianException()
Creates a SingularJacobianException with no arguments


SingularJacobianException

public SingularJacobianException(java.lang.String reason)
Creates a SingularJacobianException given one String argument containing a reason describing the Exception cause.


SingularJacobianException

public SingularJacobianException(java.lang.String reason,
                                 double[][] pt)
Creates a SingularJacobianException given one String argument containing a reason describing the Exception cause.

Parameters:
pt - a double [] [] representing the point which makes the Jacobian Singular. It is stored as pt[0][0], pt[1][0], pt[2][0], etc.

MVT API

mvt.icons