EquationSolver.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(Double) Attempts to find the point where the target function equals the specified value.

EquationSolver.Solve

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

Return Value

Double
The best approximation to the root.

Exceptions

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

EquationSolver.Solve(Double)

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

Parameters

rightHandSide  Double
The right-hand side of the equation.

Return Value

Double
The best approximation to the root.

Exceptions

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

See Also