C# Class Encog.Neural.NeuralData.Bipolar.BiPolarNeuralData

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

Public Methods

Method Description
BiPolarNeuralData ( bool d ) : System

Construct this object with the specified data.

BiPolarNeuralData ( int size ) : System

Construct a data object with the specified size.

Clear ( ) : void

Clear to false.

Clone ( ) : object

Clone this object.

GetBoolean ( int i ) : bool

Get the specified data item as a boolean.

SetBoolean ( int index, bool b ) : void

Set the value as a boolean.

this ( int x ) : double

Allowes indexed access to the data.

Method Details

BiPolarNeuralData() public method

Construct this object with the specified data.
public BiPolarNeuralData ( bool d ) : System
d bool The data to create this object with.
return System

BiPolarNeuralData() public method

Construct a data object with the specified size.
public BiPolarNeuralData ( int size ) : System
size int The size of this data object.
return System

Clear() public method

Clear to false.
public Clear ( ) : void
return void

Clone() public method

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

GetBoolean() public method

Get the specified data item as a boolean.
public GetBoolean ( int i ) : bool
i int
return bool

SetBoolean() public method

Set the value as a boolean.
public SetBoolean ( int index, bool b ) : void
index int The index.
b bool The boolean value.
return void

this() public method

Allowes indexed access to the data.
public this ( int x ) : double
x int The index.
return double