Package | Description |
---|---|
latmath.util |
Utility classes used for different lateration algorithms.
|
Modifier and Type | Method and Description |
---|---|
Matrix |
Matrix.add(Matrix b) |
Matrix |
QRDecomposition.getH()
Return the Householder vectors
|
Matrix |
LUDecomposition.getL()
Return lower triangular factor
|
Matrix |
Matrix.getMatrix(int[] r,
int j0,
int j1)
Get a submatrix.
|
Matrix |
Matrix.getMatrix(int i0,
int i1,
int j0,
int j1)
Get a submatrix.
|
Matrix |
QRDecomposition.getQ()
Generate and return the (economy-sized) orthogonal factor
|
Matrix |
QRDecomposition.getR()
Return the upper triangular factor
|
Matrix |
LUDecomposition.getU()
Return upper triangular factor
|
Matrix |
Matrix.inverse() |
Matrix |
LUDecomposition.solve(Matrix B)
Solve A*X = B
|
Matrix |
QRDecomposition.solve(Matrix B)
Least squares solution of A*X = B
|
Matrix |
Matrix.times(double s) |
Matrix |
Matrix.times(Matrix b) |
Matrix |
Matrix.transpose() |
Modifier and Type | Method and Description |
---|---|
Matrix |
Matrix.add(Matrix b) |
void |
Matrix.copy(Matrix m) |
Matrix |
LUDecomposition.solve(Matrix B)
Solve A*X = B
|
Matrix |
QRDecomposition.solve(Matrix B)
Least squares solution of A*X = B
|
Matrix |
Matrix.times(Matrix b) |
Constructor and Description |
---|
LUDecomposition(Matrix A)
LU Decomposition
|
QRDecomposition(Matrix A)
QR Decomposition, computed by Householder reflections.
|
Copyright © 2012 Thomas Hillebrandt. All Rights Reserved.