C# Class YAMP.Numerics.NonLinearBase

Abstract base class for all non-linear algorithms to determine the closest root.
Mostra file Open project: FlorianRappl/YAMP

Public Methods

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

Creates a new instance.

Protected Methods

Method Description
fprime ( double x ) : double

Computes the derivative

Method Details

NonLinearBase() public method

Creates a new instance.
public NonLinearBase ( double>.Func f, double d ) : System
f double>.Func The function to consider.
d double The spacing to use.
return System

fprime() protected method

Computes the derivative
protected fprime ( double x ) : double
x double Point
return double