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

Inheritance: INormalizationStorage
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

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

Close the CSV file.
public Close ( ) : void
Résultat void

NormalizationStorageCSV() public méthode

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.
Résultat System

NormalizationStorageCSV() public méthode

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

Open() public méthode

Open the CSV file.
public Open ( ) : void
Résultat void

Write() public méthode

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.
Résultat void