C# Class Encog.Util.Normalize.Target.NormalizationStorageArray1D

Inheritance: INormalizationStorage
显示文件 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Close ( ) : void

Not needed for this storage type.

GetArray ( ) : double[]
NormalizationStorageArray1D ( double array ) : System

Construct an object to store to a 2D array.

Open ( ) : void

Not needed for this storage type.

Write ( double data, int inputCount ) : void

Write an array.

Method Details

Close() public method

Not needed for this storage type.
public Close ( ) : void
return void

GetArray() public method

public GetArray ( ) : double[]
return double[]

NormalizationStorageArray1D() public method

Construct an object to store to a 2D array.
public NormalizationStorageArray1D ( double array ) : System
array double The array to store to.
return System

Open() public method

Not needed for this storage type.
public Open ( ) : void
return void

Write() public method

Write an array.
public Write ( double data, int inputCount ) : void
data double The data to write.
inputCount int How much of the data is input.
return void