| Name | Description |
---|
 | SolveIterative(Matrix<T>, IIterativeSolver<T>, IIterationStopCriterion<T>[]) |
Solves the matrix equation AX = B, where A is the coefficient matrix (this matrix), B is the solution matrix and X is the unknown matrix.
|
 | SolveIterative(Vector<T>, IIterativeSolver<T>, IIterationStopCriterion<T>[]) |
Solves the matrix equation Ax = b, where A is the coefficient matrix (this matrix), b is the solution vector and x is the unknown vector.
|
 | SolveIterative(Matrix<T>, IIterativeSolver<T>, IPreconditioner<T>, IIterationStopCriterion<T>[]) |
Solves the matrix equation AX = B, where A is the coefficient matrix (this matrix), B is the solution matrix and X is the unknown matrix.
|
 | SolveIterative(Matrix<T>, IIterativeSolver<T>, Iterator<T>, IPreconditioner<T>) |
Solves the matrix equation AX = B, where A is the coefficient matrix (this matrix), B is the solution matrix and X is the unknown matrix.
|
 | SolveIterative(Vector<T>, IIterativeSolver<T>, IPreconditioner<T>, IIterationStopCriterion<T>[]) |
Solves the matrix equation Ax = b, where A is the coefficient matrix (this matrix), b is the solution vector and x is the unknown vector.
|
 | SolveIterative(Vector<T>, IIterativeSolver<T>, Iterator<T>, IPreconditioner<T>) |
Solves the matrix equation Ax = b, where A is the coefficient matrix (this matrix), b is the solution vector and x is the unknown vector.
|