Package | Description |
---|---|
pal.math |
Classes for math stuff such as optimisation, numerical derivatives, matrix exponentials,
random numbers, special function etc.
|
Modifier and Type | Method | Description |
---|---|---|
Matrix |
Matrix.getAppendedHorizontally(Matrix other) |
|
Matrix |
Matrix.getAppendedVertically(Matrix other) |
|
Matrix |
Matrix.getInverse() |
Obtains the inverse of a matrix by appending identity and doing row reduction.
|
Matrix |
Matrix.getMatrixCopy() |
Cloning
|
Matrix |
Matrix.getMultiplied(double scale) |
|
Matrix |
Matrix.getMultiplied(Matrix other) |
Multiply as in [this][other]
|
Matrix |
Matrix.getRowReduced() |
Peforms a simple row reduction tramsformation
|
Matrix |
Matrix.getSubsetColumns(int startColumn,
int numberToKeep) |
Returns a new Matrix that is formed from a subset of the colums of this matrix
|
Matrix |
Matrix.getTranspose() |
Modifier and Type | Method | Description |
---|---|---|
Matrix |
Matrix.getAppendedHorizontally(Matrix other) |
|
Matrix |
Matrix.getAppendedVertically(Matrix other) |
|
Matrix |
Matrix.getMultiplied(Matrix other) |
Multiply as in [this][other]
|