类 MatrixDimensionMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hipparchus.exception.MathRuntimeException
org.hipparchus.exception.MathIllegalArgumentException
org.hipparchus.migration.exception.MultiDimensionMismatchException
org.hipparchus.migration.linear.MatrixDimensionMismatchException
- 所有已实现的接口:
-
Serializable
,LocalizedException
已过时。
当矩阵的行数或列数与预期值不匹配时抛出的异常。
- 另请参阅:
-
构造器概要
构造器说明MatrixDimensionMismatchException
(int wrongRowDim, int wrongColDim, int expectedRowDim, int expectedColDim) 已过时。从不匹配的维度构造异常。 -
方法概要
修饰符和类型方法说明int
已过时。获取预期的列维度。int
已过时。获取预期的行维度。int
已过时。获取错误的列维度。int
已过时。获取错误的行维度。从类继承的方法 org.hipparchus.migration.exception.MultiDimensionMismatchException
getExpectedDimension, getExpectedDimensions, getWrongDimension, getWrongDimensions
从类继承的方法 org.hipparchus.exception.MathRuntimeException
createInternalError, createInternalError, getLocalizedMessage, getMessage, getMessage, getParts, getSpecifier
从类继承的方法 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造器详细资料
-
MatrixDimensionMismatchException
public MatrixDimensionMismatchException(int wrongRowDim, int wrongColDim, int expectedRowDim, int expectedColDim) 已过时。从不匹配的维度构造异常。- 参数:
-
wrongRowDim
- 错误的行维度。 -
wrongColDim
- 错误的列维度。 -
expectedRowDim
- 预期的行维度。 -
expectedColDim
- 预期的列维度。
-
-
方法详细资料
-
getWrongRowDimension
public int getWrongRowDimension()已过时。获取错误的行维度。- 返回:
- 错误的行维度
-
getExpectedRowDimension
public int getExpectedRowDimension()已过时。获取预期的行维度。- 返回:
- 预期的行维度
-
getWrongColumnDimension
public int getWrongColumnDimension()已过时。获取错误的列维度。- 返回:
- 错误的列维度
-
getExpectedColumnDimension
public int getExpectedColumnDimension()已过时。获取预期的列维度。- 返回:
- 预期的列维度
-
MathIllegalArgumentException