Equation Solver<T>.Solve Method
Definition
Namespace: Numerics.NET.EquationSolvers.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Solve() | Attempts to find a root or zero of the target function. |
Solve( | 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.
Exceptions
Convergence | The 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.
public T Solve(
T rightHandSide
)
Parameters
- rightHandSide T
- The right-hand side of the equation.
Return Value
TThe best approximation to the root.
Exceptions
Convergence | The root finding algorithm failed to converge to within the specified tolerance. |