C# Class Encog.Engine.Network.Activation.ActivationGaussian

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

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
ActivationFunction ( double x, int start, int size ) : void
ActivationGaussian ( ) : System

Create an empty activation gaussian.

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

Create a gaussian activation function.

Clone ( ) : object

Clone the object.

DerivativeFunction ( double b, double a ) : double
HasDerivative ( ) : bool

Return true, gaussian has a derivative.

Method Details

ActivationFunction() public méthode

public ActivationFunction ( double x, int start, int size ) : void
x double
start int
size int
Résultat void

ActivationGaussian() public méthode

Create an empty activation gaussian.
public ActivationGaussian ( ) : System
Résultat System

ActivationGaussian() public méthode

Create a gaussian activation function.
public ActivationGaussian ( double center, double peak, double width ) : System
center double The center of the curve.
peak double The peak of the curve.
width double The width of the curve.
Résultat System

Clone() public méthode

Clone the object.
public Clone ( ) : object
Résultat object

DerivativeFunction() public méthode

public DerivativeFunction ( double b, double a ) : double
b double
a double
Résultat double

HasDerivative() public méthode

Return true, gaussian has a derivative.
public HasDerivative ( ) : bool
Résultat bool