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

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

Méthodes publiques

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

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

BiPolarMLData() public méthode

Construct a data object with the specified size.
public BiPolarMLData ( int size ) : System
size int The size of this data object.
Résultat System

Clear() public méthode

Clear to false.
public Clear ( ) : void
Résultat void

Clone() public méthode

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

GetBoolean() public méthode

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

SetBoolean() public méthode

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

ToString() public méthode

public ToString ( ) : String
Résultat String

this() public méthode

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