Package | Description |
---|---|
org.apache.commons.math.linear |
Linear algebra support.
|
Modifier and Type | Class and Description |
---|---|
class |
BigMatrixImpl
Deprecated.
as of 2.0, replaced by
Array2DRowFieldMatrix with a BigReal parameter |
Modifier and Type | Method and Description |
---|---|
BigMatrix |
BigMatrix.add(BigMatrix m)
Deprecated.
Compute the sum of this and m.
|
BigMatrix |
BigMatrixImpl.add(BigMatrix m)
Deprecated.
Compute the sum of this and
m . |
BigMatrix |
BigMatrix.copy()
Deprecated.
Returns a (deep) copy of this.
|
BigMatrix |
BigMatrixImpl.copy()
Deprecated.
Create a new BigMatrix which is a copy of this.
|
static BigMatrix |
MatrixUtils.createBigIdentityMatrix(int dimension)
Deprecated.
since 2.0, replaced by
MatrixUtils.createFieldIdentityMatrix(Field, int) |
static BigMatrix |
MatrixUtils.createBigMatrix(BigDecimal[][] data)
Deprecated.
since 2.0 replaced by
MatrixUtils.createFieldMatrix(FieldElement[][]) |
static BigMatrix |
MatrixUtils.createBigMatrix(BigDecimal[][] data,
boolean copyArray)
Deprecated.
since 2.0 replaced by
MatrixUtils.createFieldMatrix(FieldElement[][]) |
static BigMatrix |
MatrixUtils.createBigMatrix(double[][] data)
Deprecated.
since 2.0 replaced by
MatrixUtils.createFieldMatrix(FieldElement[][]) |
static BigMatrix |
MatrixUtils.createBigMatrix(String[][] data)
Deprecated.
since 2.0 replaced by
MatrixUtils.createFieldMatrix(FieldElement[][]) |
static BigMatrix |
MatrixUtils.createColumnBigMatrix(BigDecimal[] columnData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createColumnFieldMatrix(FieldElement[]) |
static BigMatrix |
MatrixUtils.createColumnBigMatrix(double[] columnData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createColumnFieldMatrix(FieldElement[]) |
static BigMatrix |
MatrixUtils.createColumnBigMatrix(String[] columnData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createColumnFieldMatrix(FieldElement[]) |
static BigMatrix |
MatrixUtils.createRowBigMatrix(BigDecimal[] rowData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createRowFieldMatrix(FieldElement[]) |
static BigMatrix |
MatrixUtils.createRowBigMatrix(double[] rowData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createRowFieldMatrix(FieldElement[]) |
static BigMatrix |
MatrixUtils.createRowBigMatrix(String[] rowData)
Deprecated.
since 2.0 replaced by
MatrixUtils.createRowFieldMatrix(FieldElement[]) |
BigMatrix |
BigMatrix.getColumnMatrix(int column)
Deprecated.
Returns the entries in column number
column
as a column matrix. |
BigMatrix |
BigMatrixImpl.getColumnMatrix(int column)
Deprecated.
Returns the entries in column number
column
as a column matrix. |
protected BigMatrix |
BigMatrixImpl.getLUMatrix()
Deprecated.
Returns the LU decomposition as a BigMatrix.
|
BigMatrix |
BigMatrix.getRowMatrix(int row)
Deprecated.
Returns the entries in row number
row
as a row matrix. |
BigMatrix |
BigMatrixImpl.getRowMatrix(int row)
Deprecated.
Returns the entries in row number
row
as a row matrix. |
BigMatrix |
BigMatrix.getSubMatrix(int[] selectedRows,
int[] selectedColumns)
Deprecated.
Gets a submatrix.
|
BigMatrix |
BigMatrixImpl.getSubMatrix(int[] selectedRows,
int[] selectedColumns)
Deprecated.
Gets a submatrix.
|
BigMatrix |
BigMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn)
Deprecated.
Gets a submatrix.
|
BigMatrix |
BigMatrixImpl.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn)
Deprecated.
Gets a submatrix.
|
BigMatrix |
BigMatrix.inverse()
Deprecated.
Returns the inverse of this matrix.
|
BigMatrix |
BigMatrixImpl.inverse()
Deprecated.
Returns the inverse matrix if this matrix is invertible.
|
BigMatrix |
BigMatrix.multiply(BigMatrix m)
Deprecated.
Returns the result of postmultiplying this by m.
|
BigMatrix |
BigMatrixImpl.multiply(BigMatrix m)
Deprecated.
Returns the result of postmultiplying this by
m . |
BigMatrix |
BigMatrix.preMultiply(BigMatrix m)
Deprecated.
Returns the result premultiplying this by
m . |
BigMatrix |
BigMatrixImpl.preMultiply(BigMatrix m)
Deprecated.
Returns the result premultiplying this by
m . |
BigMatrix |
BigMatrix.scalarAdd(BigDecimal d)
Deprecated.
Returns the result of adding d to each entry of this.
|
BigMatrix |
BigMatrixImpl.scalarAdd(BigDecimal d)
Deprecated.
Returns the result of adding d to each entry of this.
|
BigMatrix |
BigMatrix.scalarMultiply(BigDecimal d)
Deprecated.
Returns the result multiplying each entry of this by d.
|
BigMatrix |
BigMatrixImpl.scalarMultiply(BigDecimal d)
Deprecated.
Returns the result of multiplying each entry of this by
d |
BigMatrix |
BigMatrix.solve(BigMatrix b)
Deprecated.
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)
Deprecated.
Returns a matrix of (column) solution vectors for linear systems with
coefficient matrix = this and constant vectors = columns of
b . |
BigMatrix |
BigMatrix.subtract(BigMatrix m)
Deprecated.
Compute this minus m.
|
BigMatrix |
BigMatrixImpl.subtract(BigMatrix m)
Deprecated.
Compute this minus
m . |
BigMatrix |
BigMatrix.transpose()
Deprecated.
Returns the transpose of this matrix.
|
BigMatrix |
BigMatrixImpl.transpose()
Deprecated.
Returns the transpose matrix.
|
Modifier and Type | Method and Description |
---|---|
BigMatrix |
BigMatrix.add(BigMatrix m)
Deprecated.
Compute the sum of this and m.
|
BigMatrix |
BigMatrixImpl.add(BigMatrix m)
Deprecated.
Compute the sum of this and
m . |
BigMatrix |
BigMatrix.multiply(BigMatrix m)
Deprecated.
Returns the result of postmultiplying this by m.
|
BigMatrix |
BigMatrixImpl.multiply(BigMatrix m)
Deprecated.
Returns the result of postmultiplying this by
m . |
BigMatrix |
BigMatrix.preMultiply(BigMatrix m)
Deprecated.
Returns the result premultiplying this by
m . |
BigMatrix |
BigMatrixImpl.preMultiply(BigMatrix m)
Deprecated.
Returns the result premultiplying this by
m . |
BigMatrix |
BigMatrix.solve(BigMatrix b)
Deprecated.
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)
Deprecated.
Returns a matrix of (column) solution vectors for linear systems with
coefficient matrix = this and constant vectors = columns of
b . |
BigMatrix |
BigMatrix.subtract(BigMatrix m)
Deprecated.
Compute this minus m.
|
BigMatrix |
BigMatrixImpl.subtract(BigMatrix m)
Deprecated.
Compute this minus
m . |
Copyright © 2003-2012 Apache Software Foundation. All Rights Reserved.