EquationSolver<T>.Solve Method

Definition

Namespace: Numerics.NET.EquationSolvers.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

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

Solve

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

Return Value

T
The best approximation to the root.

Exceptions

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

Solve(T)

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

Parameters

rightHandSide  T
The right-hand side of the equation.

Return Value

T
The best approximation to the root.

Exceptions

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

See Also