Method | Description | |
---|---|---|
Close ( ) : void |
Close the codec.
|
|
PrepareRead ( ) : void |
Prepare to read.
|
|
PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void |
Prepare to write.
|
|
Read ( double input, double ideal, double &significance ) : bool |
Read a record.
|
|
SQLCODEC ( String sql, int inputSize, int idealSize, String connectString ) : System |
Create a SQL neural data set.
|
|
Write ( double input, double ideal, double significance ) : void |
public PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void | ||
recordCount | int | The record count. |
inputSize | int | The input size. |
idealSize | int | The ideal size. |
return | void |
public Read ( double input, double ideal, double &significance ) : bool | ||
input | double | The input data. |
ideal | double | The ideal data. |
significance | double | |
return | bool |
public SQLCODEC ( String sql, int inputSize, int idealSize, String connectString ) : System | ||
sql | String | The SQL to execute. |
inputSize | int | The size of the input data being read. |
idealSize | int | The size of the ideal output data being read. |
connectString | String | The connection string. |
return | System |
public Write ( double input, double ideal, double significance ) : void | ||
input | double | |
ideal | double | |
significance | double | |
return | void |