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 BigMatrix.getDeterminant()
          Returns the determinant of this matrix.
 double RealMatrixImpl.getDeterminant()
           
 java.math.BigDecimal BigMatrixImpl.getDeterminant()
          Returns the determinant of this matrix.
protected  RealMatrix RealMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a RealMatrix.
protected  BigMatrix BigMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a BigMatrix.
 BigMatrix BigMatrix.inverse()
          Returns the inverse of this matrix.
 RealMatrix RealMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 RealMatrix RealMatrix.inverse()
          Returns the inverse of this matrix.
 BigMatrix BigMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 void RealMatrixImpl.luDecompose()
          Computes a new LU decomposition for this matrix, storing the result for use by other methods.
 void BigMatrixImpl.luDecompose()
          Computes a new LU decompostion for this matrix, storing the result for use by other methods.
 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.
 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.
 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.
 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.
 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.
 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.
 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.
 



Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.