C# Class Encog.MathUtil.RBF.GaussianFunction

Inheritance: BasicRBF
Mostra file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Calculate ( double x ) : double

Calculate the result from the function.

GaussianFunction ( ) : System

Default constructor for persistance.

GaussianFunction ( double peak, double center, double width ) : System

Construct a multi-dimension Gaussian function with the specified peak, centers and widths.

GaussianFunction ( int dimensions ) : System

Create centered at zero, width 0, and peak 0.

Method Details

Calculate() public method

Calculate the result from the function.
public Calculate ( double x ) : double
x double The parameters for the function, one for each dimension.
return double

GaussianFunction() public method

Default constructor for persistance.
public GaussianFunction ( ) : System
return System

GaussianFunction() public method

Construct a multi-dimension Gaussian function with the specified peak, centers and widths.
public GaussianFunction ( double peak, double center, double width ) : System
peak double The peak for all dimensions.
center double The centers for each dimension.
width double The widths for each dimension.
return System

GaussianFunction() public method

Create centered at zero, width 0, and peak 0.
public GaussianFunction ( int dimensions ) : System
dimensions int The number of dimensions.
return System