C# Class Encog.ML.Data.Basic.BasicMLData

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

Méthodes publiques

Méthode Description
BasicMLData ( double d ) : System

Construct this object with the specified data.

BasicMLData ( int size ) : System

Construct this object with blank data and a specified size.

Clear ( ) : void

Clear to zero.

Clone ( ) : object

Clone this object.

ToString ( ) : string

Convert the object to a string.

this ( int x ) : double

Access the data by index.

Method Details

BasicMLData() public méthode

Construct this object with the specified data.
public BasicMLData ( double d ) : System
d double The data to construct this object with.
Résultat System

BasicMLData() public méthode

Construct this object with blank data and a specified size.
public BasicMLData ( int size ) : System
size int The amount of data to store.
Résultat System

Clear() public méthode

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

Clone() public méthode

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

ToString() public méthode

Convert the object to a string.
public ToString ( ) : string
Résultat string

this() public méthode

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