Package org.apache.commons.math.linear
SinceNot specified.
VersionNot specified.
AuthorNot specified.
| BigMatrix |
Interface defining a real-valued matrix with basic algebraic operations, using
BigDecimal representations for the entries. |
| RealMatrix |
Interface defining a real-valued matrix with basic algebraic operations. |
| BigMatrixImpl |
Implementation of BigMatrix using a BigDecimal[][] array to store entries
and
LU decompostion to support linear system
solution and inverse. |
| MatrixUtils |
A collection of static methods that operate on or return matrices. |
| RealMatrixImpl |
Implementation of RealMatrix using a double[][] array to store entries and
LU decompostion to support linear system
solution and inverse. |
| InvalidMatrixException |
Thrown when a system attempts an operation on a matrix, and
that matrix does not satisfy the preconditions for the
aforementioned operation. |
| MatrixIndexException |
Thrown when an operation addresses a matrix coordinate (row,col)
which is outside of the dimensions of a matrix. |