Uses of Class
org.encog.util.csv.CSVFormat

Packages that use CSVFormat
org.encog.neural.data.buffer.codec   
org.encog.neural.data.csv   
org.encog.normalize   
org.encog.normalize.target   
org.encog.util.csv   
org.encog.util.simple   
 

Uses of CSVFormat in org.encog.neural.data.buffer.codec
 

Constructors in org.encog.neural.data.buffer.codec with parameters of type CSVFormat
CSVDataCODEC(File file, CSVFormat format)
          Constructor to create CSV from binary..
CSVDataCODEC(File file, CSVFormat format, boolean headers, int inputCount, int idealCount)
          Create a CODEC to load data from CSV to binary.
 

Uses of CSVFormat in org.encog.neural.data.csv
 

Methods in org.encog.neural.data.csv that return CSVFormat
 CSVFormat CSVNeuralDataSet.getFormat()
           
 

Constructors in org.encog.neural.data.csv with parameters of type CSVFormat
CSVNeuralDataSet(String filename, int inputSize, int idealSize, boolean headers, CSVFormat format)
          Construct this data set using a comma as a delimiter.
 

Uses of CSVFormat in org.encog.normalize
 

Methods in org.encog.normalize that return CSVFormat
 CSVFormat DataNormalization.getCSVFormat()
           
 

Methods in org.encog.normalize with parameters of type CSVFormat
 void DataNormalization.setCSVFormat(CSVFormat csvFormat)
          Set the CSV format to use.
 

Uses of CSVFormat in org.encog.normalize.target
 

Constructors in org.encog.normalize.target with parameters of type CSVFormat
NormalizationStorageCSV(CSVFormat format, File file)
          Construct a CSV storage object from the specified file.
 

Uses of CSVFormat in org.encog.util.csv
 

Fields in org.encog.util.csv declared as CSVFormat
static CSVFormat CSVFormat.DECIMAL_COMMA
          Use a decimal comma, and a semicolon to separate numbers.
static CSVFormat CSVFormat.DECIMAL_POINT
          Use a decimal point, and a comma to separate numbers.
static CSVFormat CSVFormat.EG_FORMAT
          EG files, internally use a decimal point and comma separator.
static CSVFormat CSVFormat.ENGLISH
          Decimal point is typically used in English speaking counties.
 

Methods in org.encog.util.csv with parameters of type CSVFormat
static double[] NumberList.fromList(CSVFormat format, String str)
          Get an array of double's from a string of comma separated text.
static void NumberList.toList(CSVFormat format, StringBuilder result, double[] data)
          Convert an array of doubles to a comma separated list.
 

Constructors in org.encog.util.csv with parameters of type CSVFormat
ReadCSV(InputStream is, boolean headers, CSVFormat format)
          Construct a CSV reader from an input stream.
ReadCSV(String filename, boolean headers, CSVFormat format)
          Construct a CSV reader from a filename.
 

Uses of CSVFormat in org.encog.util.simple
 

Methods in org.encog.util.simple with parameters of type CSVFormat
static NeuralDataSet TrainingSetUtil.loadCSVTOMemory(CSVFormat format, String filename, boolean headers, int inputSize, int idealSize)
          Load a CSV file into a memory dataset.
 



Copyright © 2011. All Rights Reserved.