C# Class YAMP.Numerics.SecantMethod

Represents the Secant method for determining the closest root.
Inheritance: NonLinearBase
Datei anzeigen Open project: FlorianRappl/YAMP

Public Methods

Method Description
SecantMethod ( double>.Func f, double shag, double delta ) : System

Cretes a new instance.

Private Methods

Method Description
Perform ( double x0, double delta ) : void

Performs an iteration.

Method Details

SecantMethod() public method

Cretes a new instance.
public SecantMethod ( double>.Func f, double shag, double delta ) : System
f double>.Func Function to be solved delegate
shag double The spacing to use.
delta double The function values to use.
return System