|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.ejml.alg.dense.linsol.LinearSolverFactory
public class LinearSolverFactory
A factory for generating solvers for systems of the form A*x=b, where A and B are known and x is unknown.
| Constructor Summary | |
|---|---|
LinearSolverFactory()
|
|
| Method Summary | |
|---|---|
static AdjustableLinearSolver |
adjustable()
Create a solver which can efficiently add and remove elements instead of recomputing everything from scratch. |
static LinearSolver<DenseMatrix64F> |
general(int numRows,
int numCols)
Creates a general purpose solver. |
static LinearSolver<DenseMatrix64F> |
leastSquares(int numRows,
int numCols)
Creates a good general purpose solver for over determined systems and returns the optimal least-squares solution. |
static LinearSolver<DenseMatrix64F> |
linear(int matrixSize)
Creates a solver for linear systems. |
static LinearSolver<DenseMatrix64F> |
symmPosDef(int matrixWidth)
Creates a solver for symmetric positive definite matrices. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LinearSolverFactory()
| Method Detail |
|---|
public static LinearSolver<DenseMatrix64F> general(int numRows,
int numCols)
numRows - The number of rows that the decomposition is optimized for.numCols - The number of columns that the decomposition is optimized for.public static LinearSolver<DenseMatrix64F> linear(int matrixSize)
public static LinearSolver<DenseMatrix64F> leastSquares(int numRows,
int numCols)
numRows - The number of rows that the decomposition is optimized for.numCols - The number of columns that the decomposition is optimized for.
public static LinearSolver<DenseMatrix64F> symmPosDef(int matrixWidth)
public static AdjustableLinearSolver adjustable()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||