C# Class Encog.ML.Data.Specific.BiPolarMLData

Inheritance: IMLData
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
BiPolarMLData ( bool d ) : System

Construct this object with the specified data.

BiPolarMLData ( 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.

ToString ( ) : String
this ( int x ) : double

Allowes indexed access to the data.

Method Details

BiPolarMLData() public method

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

BiPolarMLData() public method

Construct a data object with the specified size.
public BiPolarMLData ( 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

ToString() public method

public ToString ( ) : String
return String

this() public method

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