EquationSystemSolver.Solve Method

Definition

Namespace: Extreme.Mathematics.EquationSolvers
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Solve() Attempts to find a root or zero of the target function.
Solve(Vector<Double>) Attempts to find the point where the target function equals the specified value.

EquationSystemSolver.Solve

Attempts to find a root or zero of the target function.
C#
public DenseVector<double> Solve()

Return Value

DenseVector<Double>
The best approximation to the solution.

Exceptions

ConvergenceExceptionThe root finding algorithm failed to converge to within the specified tolerance.

EquationSystemSolver.Solve(Vector<Double>)

Attempts to find the point where the target function equals the specified value.
C#
public DenseVector<double> Solve(
	Vector<double> rightHandSide
)

Parameters

rightHandSide  Vector<Double>
A vector containing the right-hand sides of the equations.

Return Value

DenseVector<Double>
The best approximation to the solution.

Exceptions

ArgumentNullExceptionrightHandSide is null.
ConvergenceExceptionThe root finding algorithm failed to converge to within the specified tolerance.

See Also