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.
|
static BigMatrix |
MatrixUtils.createBigMatrix(double[][] data) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createBigMatrix(java.lang.String[][] data) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createBigMatrix(java.math.BigDecimal[][] data) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createBigMatrix(java.math.BigDecimal[][] data,
boolean copyArray) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createColumnBigMatrix(double[] columnData) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createColumnBigMatrix(java.lang.String[] columnData) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createColumnBigMatrix(java.math.BigDecimal[] columnData) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createRowBigMatrix(double[] rowData) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createRowBigMatrix(java.lang.String[] rowData) |
Deprecated.
|
static BigMatrix |
MatrixUtils.createRowBigMatrix(java.math.BigDecimal[] rowData) |
Deprecated.
|
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 |
BigMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn) |
Deprecated.
Gets a submatrix.
|
BigMatrix |
BigMatrixImpl.getSubMatrix(int[] selectedRows,
int[] selectedColumns) |
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(java.math.BigDecimal d) |
Deprecated.
Returns the result of adding d to each entry of this.
|
BigMatrix |
BigMatrixImpl.scalarAdd(java.math.BigDecimal d) |
Deprecated.
Returns the result of adding d to each entry of this.
|
BigMatrix |
BigMatrix.scalarMultiply(java.math.BigDecimal d) |
Deprecated.
Returns the result multiplying each entry of this by d.
|
BigMatrix |
BigMatrixImpl.scalarMultiply(java.math.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.
|