C# Класс Encog.Util.Normalize.Target.NormalizationStorageCSV

Наследование: INormalizationStorage
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Close() публичный Метод

Close the CSV file.
public Close ( ) : void
Результат void

NormalizationStorageCSV() публичный Метод

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.
Результат System

NormalizationStorageCSV() публичный Метод

Construct a CSV storage object from the specified file.
public NormalizationStorageCSV ( String file ) : System
file String The file to write the CSV to.
Результат System

Open() публичный Метод

Open the CSV file.
public Open ( ) : void
Результат void

Write() публичный Метод

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.
Результат void