JacobiMethodD Class |
Namespace: DigitalRune.Mathematics.Algebra
The JacobiMethodD type exposes the following members.
Name | Description | |
---|---|---|
JacobiMethodD | Initializes a new instance of the JacobiMethodD class |
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Solve(MatrixD, VectorD) |
Solves the specified linear system of equations A * x = b.
(Inherited from IterativeLinearSystemSolverD.) | |
Solve(MatrixD, VectorD, VectorD) |
Solves the specified linear system of equations Ax=b.
(Overrides IterativeLinearSystemSolverDSolve(MatrixD, VectorD, VectorD).) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
Epsilon |
Gets or sets the tolerance value.
(Inherited from IterativeLinearSystemSolverD.) | |
MaxNumberOfIterations |
Gets or sets the maximum number number of iterations.
(Inherited from IterativeLinearSystemSolverD.) | |
NumberOfIterations |
Gets or sets the number of iterations of the last Solve(MatrixD, VectorD)
method call.
(Inherited from IterativeLinearSystemSolverD.) |
The method will always converge if the matrix A is strictly or irreducibly diagonally dominant. Strict row diagonal dominance means that for each row, the absolute value of the diagonal term is greater than the sum of absolute values of other terms.
See http://en.wikipedia.org/wiki/Jacobi_method for an introduction to this method and for an explanation of the convergence criterion.