Click or drag to resize

Solver Class

A simple solver for equations of the form f(x) = 0.
Inheritance Hierarchy
SystemObject
  Austra.LibrarySolver

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public static class Solver

The Solver type exposes the following members.

Methods
 NameDescription
Public methodStatic memberSolve(FuncDouble, Double, FuncDouble, Double, Double)Performs a Newton-Raphson iteration to find a root of f(x) = 0.
Public methodStatic memberSolve(FuncDouble, Double, FuncDouble, Double, Double, Double)Performs a Newton-Raphson iteration to find a root of f(x) = 0.
Public methodStatic memberSolve(FuncDouble, Double, FuncDouble, Double, Double, Double, Int32)Performs a Newton-Raphson iteration to find a root of f(x) = 0.
Top
See Also