|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math3.exception.MathIllegalArgumentException
org.apache.commons.math3.linear.NonSymmetricMatrixException
public class NonSymmetricMatrixException
Exception to be thrown when a symmetric matrix is expected.
Field Summary | |
---|---|
private int |
column
Column. |
private int |
row
Row. |
private static long |
serialVersionUID
Serializable version Id. |
private double |
threshold
Threshold. |
Constructor Summary | |
---|---|
NonSymmetricMatrixException(int row,
int column,
double threshold)
Construct an exception. |
Method Summary | |
---|---|
int |
getColumn()
|
int |
getRow()
|
double |
getThreshold()
|
Methods inherited from class org.apache.commons.math3.exception.MathIllegalArgumentException |
---|
getContext, getLocalizedMessage, getMessage |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, 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 |
---|
private static final long serialVersionUID
private final int row
private final int column
private final double threshold
Constructor Detail |
---|
public NonSymmetricMatrixException(int row, int column, double threshold)
row
- Row index.column
- Column index.threshold
- Relative symmetry threshold.Method Detail |
---|
public int getRow()
public int getColumn()
public double getThreshold()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |