Solver Class

A simple solver for equations of the form f(x) = 0.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public static class Solver
Inheritance
Object    Solver

Methods

Solve(FuncDouble, Double, FuncDouble, Double, Double)Performs a Newton-Raphson iteration to find a root of f(x) = 0.
Solve(FuncDouble, Double, FuncDouble, Double, Double, Double)Performs a Newton-Raphson iteration to find a root of f(x) = 0.
Solve(FuncDouble, Double, FuncDouble, Double, Double, Double, Int32)Performs a Newton-Raphson iteration to find a root of f(x) = 0.

See Also