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

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

Public Methods

Method 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 method

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

BasicMLData() public method

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

Clear() public method

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

Clone() public method

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

ToString() public method

Convert the object to a string.
public ToString ( ) : string
return string

this() public method

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