org.apache.commons.math.linear
Class MatrixDimensionMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math.exception.MathIllegalArgumentException
org.apache.commons.math.exception.MultiDimensionMismatchException
org.apache.commons.math.linear.MatrixDimensionMismatchException
- All Implemented Interfaces:
- java.io.Serializable, ExceptionContextProvider
public class MatrixDimensionMismatchException
- extends MultiDimensionMismatchException
Exception to be thrown when either the number of rows or the number of
columns of a matrix do not match the expected values.
- Since:
- 3.0
- Version:
- $Id: MatrixDimensionMismatchException.java 1177938 2011-10-01 07:57:19Z celestin $
- See Also:
- Serialized Form
|
Constructor Summary |
MatrixDimensionMismatchException(int wrongRowDim,
int wrongColDim,
int expectedRowDim,
int expectedColDim)
Construct an exception from the mismatched dimensions. |
| 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 |
MatrixDimensionMismatchException
public MatrixDimensionMismatchException(int wrongRowDim,
int wrongColDim,
int expectedRowDim,
int expectedColDim)
- Construct an exception from the mismatched dimensions.
- Parameters:
wrongRowDim - Wrong row dimension.wrongColDim - Wrong column dimension.expectedRowDim - Expected row dimension.expectedColDim - Expected column dimension.
getWrongRowDimension
public int getWrongRowDimension()
- Returns:
- the expected row dimension.
getExpectedRowDimension
public int getExpectedRowDimension()
- Returns:
- the expected row dimension.
getWrongColumnDimension
public int getWrongColumnDimension()
- Returns:
- the wrong column dimension.
getExpectedColumnDimension
public int getExpectedColumnDimension()
- Returns:
- the expected column dimension.
Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.