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

Inheritance: INormalizationStorage
Show file Open project: encog/encog-silverlight-core

Public Methods

Method Description
Close ( ) : void

Close the CSV file.

NormalizationStorageCSV ( CSVFormat format, String file ) : System

Construct a CSV storage object from the specified file.

NormalizationStorageCSV ( String file ) : System

Construct a CSV storage object from the specified file.

Open ( ) : void

Open the CSV file.

Write ( double data, int inputCount ) : void

Write an array.

Method Details

Close() public method

Close the CSV file.
public Close ( ) : void
return void

NormalizationStorageCSV() public method

Construct a CSV storage object from the specified file.
public NormalizationStorageCSV ( CSVFormat format, String file ) : System
format Encog.Util.CSV.CSVFormat The format to use.
file String The file to write the CSV to.
return System

NormalizationStorageCSV() public method

Construct a CSV storage object from the specified file.
public NormalizationStorageCSV ( String file ) : System
file String The file to write the CSV to.
return System

Open() public method

Open the CSV file.
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