Click or drag to resize

Matrix<T>.SolveIterative Method

Overload List
 NameDescription
Public methodSolveIterative(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.
Public methodSolveIterative(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.
Public methodSolveIterative(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.
Public methodSolveIterative(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.
Public methodSolveIterative(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.
Public methodSolveIterative(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.
Top
See Also