Uses of Class
org.apache.commons.math.linear.InvalidMatrixException

Packages that use InvalidMatrixException
org.apache.commons.math.linear Linear algebra support. 
 

Uses of InvalidMatrixException in org.apache.commons.math.linear
 

Methods in org.apache.commons.math.linear that throw InvalidMatrixException
 java.math.BigDecimal BigMatrixImpl.getDeterminant()
          Returns the determinant of this matrix.
 double RealMatrixImpl.getDeterminant()
           
 java.math.BigDecimal BigMatrix.getDeterminant()
          Returns the determinant of this matrix.
protected  BigMatrix BigMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a BigMatrix.
protected  RealMatrix RealMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a RealMatrix.
 BigMatrix BigMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 RealMatrix RealMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 RealMatrix RealMatrix.inverse()
          Returns the inverse of this matrix.
 BigMatrix BigMatrix.inverse()
          Returns the inverse of this matrix.
 void BigMatrixImpl.luDecompose()
          Computes a new LU decompostion for this matrix, storing the result for use by other methods.
 void RealMatrixImpl.luDecompose()
          Computes a new LU decomposition for this matrix, storing the result for use by other methods.
 java.math.BigDecimal[] BigMatrixImpl.solve(java.math.BigDecimal[] b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 java.math.BigDecimal[] BigMatrix.solve(java.math.BigDecimal[] b)
          Returns the solution vector for a linear system with coefficient matrix = this and constant vector = b.
 BigMatrix BigMatrixImpl.solve(BigMatrix b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 BigMatrix BigMatrix.solve(BigMatrix b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 java.math.BigDecimal[] BigMatrixImpl.solve(double[] b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 double[] RealMatrixImpl.solve(double[] b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 double[] RealMatrix.solve(double[] b)
          Returns the solution vector for a linear system with coefficient matrix = this and constant vector = b.
 RealMatrix RealMatrixImpl.solve(RealMatrix b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.
 RealMatrix RealMatrix.solve(RealMatrix b)
          Returns a matrix of (column) solution vectors for linear systems with coefficient matrix = this and constant vectors = columns of b.