C# Class YAMP.Numerics.Optimization.NewtonMethod

Represents the Newton method.
Inheritance: NonLinearBase
ファイルを表示 Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method Description
NewtonMethod ( double>.Func f, double x, double d ) : System

Creates a new instance.

Method Details

NewtonMethod() public method

Creates a new instance.
public NewtonMethod ( double>.Func f, double x, double d ) : System
f double>.Func Function to be solved delegate.
x double The starting point.
d double The spacing to use.
return System