Method | Description | |
---|---|---|
CSVDataCODEC ( String file, |
Constructor to create CSV from binary.
|
|
CSVDataCODEC ( String file, |
Create a CODEC to load data from CSV to binary.
|
|
Close ( ) : void | ||
PrepareRead ( ) : void |
Prepare to read from the CSV file.
|
|
PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void |
Prepare to write to a CSV file.
|
|
Read ( double input, double ideal, double &significance ) : bool | ||
Write ( double input, double ideal, double significance ) : void |
public CSVDataCODEC ( String file, |
||
file | String | The CSV file to create. |
format | The format for that CSV file. | |
significance | bool | |
return | System |
public CSVDataCODEC ( String file, |
||
file | String | The CSV file to load. |
format | The format that the CSV file is in. | |
headers | bool | True, if there are headers. |
inputCount | int | The number of input columns. |
idealCount | int | The number of ideal columns. |
significance | bool | Is there a signficance column. |
return | System |
public PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void | ||
recordCount | int | The total record count, that will be written. |
inputSize | int | The input size. |
idealSize | int | The ideal size. |
return | void |
public Read ( double input, double ideal, double &significance ) : bool | ||
input | double | |
ideal | double | |
significance | double | |
return | bool |
public Write ( double input, double ideal, double significance ) : void | ||
input | double | |
ideal | double | |
significance | double | |
return | void |