C# Class Encog.MathUtil.RBF.GaussianFunction

Inheritance: BasicRBF
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

GaussianFunction() public méthode

Default constructor for persistance.
public GaussianFunction ( ) : System
Résultat System

GaussianFunction() public méthode

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.
Résultat System

GaussianFunction() public méthode

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