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
 BigDecimal BigMatrix.getDeterminant()
          Returns the determinant of this matrix.
 BigDecimal BigMatrixImpl.getDeterminant()
          Returns the determinant of this matrix.
 double RealMatrixImpl.getDeterminant()
           
protected  BigMatrix BigMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a BigMatrix.
protected  RealMatrix RealMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a RealMatrix.
 BigMatrix BigMatrix.inverse()
          Returns the inverse of this matrix.
 BigMatrix BigMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 RealMatrix RealMatrix.inverse()
          Returns the inverse of this matrix.
 RealMatrix RealMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 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 decompostion for this matrix, storing the result for use by other methods.
 BigDecimal[] BigMatrix.solve(BigDecimal[] b)
          Returns the solution vector for a linear system with coefficient matrix = this and constant vector = b.
 BigDecimal[] BigMatrixImpl.solve(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.
 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[] RealMatrix.solve(double[] b)
          Returns the solution vector for a linear system with coefficient matrix = this and constant vector = 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.
 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.
 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.
 



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