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

Inheritance: IActivationFunction, ICloneable
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
ActivationFunction ( double x, int start, int size ) : void
ActivationStep ( ) : System

Create a basic step activation with low=0, center=0, high=1.

ActivationStep ( double low, double center, double high ) : System

Construct a step activation function.

Clone ( ) : object

Clone the object.

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

Method Details

ActivationFunction() public method

public ActivationFunction ( double x, int start, int size ) : void
x double
start int
size int
return void

ActivationStep() public method

Create a basic step activation with low=0, center=0, high=1.
public ActivationStep ( ) : System
return System

ActivationStep() public method

Construct a step activation function.
public ActivationStep ( double low, double center, double high ) : System
low double The low of the function.
center double The center of the function.
high double The high of the function.
return System

Clone() public method

Clone the object.
public Clone ( ) : object
return object

DerivativeFunction() public method

public DerivativeFunction ( double b, double a ) : double
b double
a double
return double

HasDerivative() public method

public HasDerivative ( ) : bool
return bool