Uses of Interface
org.apache.commons.math.linear.BigMatrix

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

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

Classes in org.apache.commons.math.linear that implement BigMatrix
 class BigMatrixImpl
          Implementation of BigMatrix using a BigDecimal[][] array to store entries and LU decompostion to support linear system solution and inverse.
 

Methods in org.apache.commons.math.linear that return BigMatrix
 BigMatrix BigMatrixImpl.add(BigMatrix m)
          Compute the sum of this and m.
 BigMatrix BigMatrix.add(BigMatrix m)
          Compute the sum of this and m.
 BigMatrix BigMatrixImpl.copy()
          Create a new BigMatrix which is a copy of this.
 BigMatrix BigMatrix.copy()
          Returns a (deep) copy of this.
static BigMatrix MatrixUtils.createBigIdentityMatrix(int dimension)
          Returns dimension x dimension identity matrix.
static BigMatrix MatrixUtils.createBigMatrix(java.math.BigDecimal[][] data)
          Returns a BigMatrix whose entries are the the values in the the input array.
static BigMatrix MatrixUtils.createBigMatrix(double[][] data)
          Returns a BigMatrix whose entries are the the values in the the input array.
static BigMatrix MatrixUtils.createBigMatrix(java.lang.String[][] data)
          Returns a BigMatrix whose entries are the the values in the the input array.
static BigMatrix MatrixUtils.createColumnBigMatrix(java.math.BigDecimal[] columnData)
          Creates a column BigMatrix using the data from the input array.
static BigMatrix MatrixUtils.createColumnBigMatrix(double[] columnData)
          Creates a column BigMatrix using the data from the input array.
static BigMatrix MatrixUtils.createColumnBigMatrix(java.lang.String[] columnData)
          Creates a column BigMatrix using the data from the input array.
static BigMatrix MatrixUtils.createRowBigMatrix(java.math.BigDecimal[] rowData)
          Creates a row BigMatrix using the data from the input array.
static BigMatrix MatrixUtils.createRowBigMatrix(double[] rowData)
          Creates a row BigMatrix using the data from the input array.
static BigMatrix MatrixUtils.createRowBigMatrix(java.lang.String[] rowData)
          Creates a row BigMatrix using the data from the input array.
 BigMatrix BigMatrixImpl.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
 BigMatrix BigMatrix.getColumnMatrix(int column)
          Returns the entries in column number column as a column matrix.
protected  BigMatrix BigMatrixImpl.getIdentity(int dimension)
          Deprecated. use MatrixUtils.createBigIdentityMatrix(int)
protected  BigMatrix BigMatrixImpl.getLUMatrix()
          Returns the LU decomposition as a BigMatrix.
 BigMatrix BigMatrixImpl.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrix.getRowMatrix(int row)
          Returns the entries in row number row as a row matrix.
 BigMatrix BigMatrixImpl.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 BigMatrix BigMatrix.getSubMatrix(int[] selectedRows, int[] selectedColumns)
          Gets a submatrix.
 BigMatrix BigMatrixImpl.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BigMatrix BigMatrix.getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
          Gets a submatrix.
 BigMatrix BigMatrixImpl.inverse()
          Returns the inverse matrix if this matrix is invertible.
 BigMatrix BigMatrix.inverse()
          Returns the inverse of this matrix.
 BigMatrix BigMatrixImpl.multiply(BigMatrix m)
          Returns the result of postmultiplying this by m.
 BigMatrix BigMatrix.multiply(BigMatrix m)
          Returns the result of postmultiplying this by m.
 BigMatrix BigMatrixImpl.preMultiply(BigMatrix m)
          Returns the result premultiplying this by m.
 BigMatrix BigMatrix.preMultiply(BigMatrix m)
          Returns the result premultiplying this by m.
 BigMatrix BigMatrixImpl.scalarAdd(java.math.BigDecimal d)
          Returns the result of adding d to each entry of this.
 BigMatrix BigMatrix.scalarAdd(java.math.BigDecimal d)
          Returns the result of adding d to each entry of this.
 BigMatrix BigMatrixImpl.scalarMultiply(java.math.BigDecimal d)
          Returns the result multiplying each entry of this by d
 BigMatrix BigMatrix.scalarMultiply(java.math.BigDecimal d)
          Returns the result multiplying each entry of this by d.
 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.
 BigMatrix BigMatrixImpl.subtract(BigMatrix m)
          Compute this minus m.
 BigMatrix BigMatrix.subtract(BigMatrix m)
          Compute this minus m.
 BigMatrix BigMatrixImpl.transpose()
          Returns the transpose matrix.
 BigMatrix BigMatrix.transpose()
          Returns the transpose of this matrix.
 

Methods in org.apache.commons.math.linear with parameters of type BigMatrix
 BigMatrix BigMatrixImpl.add(BigMatrix m)
          Compute the sum of this and m.
 BigMatrix BigMatrix.add(BigMatrix m)
          Compute the sum of this and m.
 BigMatrix BigMatrixImpl.multiply(BigMatrix m)
          Returns the result of postmultiplying this by m.
 BigMatrix BigMatrix.multiply(BigMatrix m)
          Returns the result of postmultiplying this by m.
 BigMatrix BigMatrixImpl.preMultiply(BigMatrix m)
          Returns the result premultiplying this by m.
 BigMatrix BigMatrix.preMultiply(BigMatrix m)
          Returns the result premultiplying this by m.
 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.
 BigMatrix BigMatrixImpl.subtract(BigMatrix m)
          Compute this minus m.
 BigMatrix BigMatrix.subtract(BigMatrix m)
          Compute this minus m.