Method | Description | |
---|---|---|
AddRawHeadings ( StringBuilder line, String prefix, |
Add headings for a raw file.
|
|
AnalystField ( ) : System |
Construct the object with a range of 1 and -1.
|
|
AnalystField ( |
Construct an analyst field. Works like a C++ copy constructor.
|
|
AnalystField ( NormalizationAction theAction, String theName ) : System |
Construct an object.
|
|
AnalystField ( NormalizationAction theAction, String theName, double ahigh, double alow, double nhigh, double nlow ) : System |
Construct the field, with no defaults.
|
|
AnalystField ( String theName, NormalizationAction theAction, double high, double low ) : System |
Construct an analyst field to use.
|
|
AnalystField ( double theNormalizedHigh, double theNormalizedLow ) : System |
Construct the object.
|
|
Analyze ( double d ) : void |
Analyze the specified value. Adjust min/max as needed. Usually used only internally.
|
|
DeNormalize ( double v ) : double |
Denormalize the specified value.
|
|
DetermineClass ( double data ) : |
Determine what class the specified data belongs to.
|
|
DetermineClass ( int pos, double data ) : |
Determine the class using part of an array.
|
|
DetermineMode ( EncogAnalyst analyst ) : int |
Determine the mode, this is the class item that has the most instances.
|
|
Encode ( String str ) : double[] |
Encode the string to numeric form.
|
|
Encode ( int classNumber ) : double[] |
Encode the class.
|
|
EncodeEquilateral ( int classNumber ) : double[] |
Perform an equilateral encode.
|
|
FixSingleValue ( ) : void |
Fix normalized fields that have a single value for the min/max. Separate them by 2 units.
|
|
Init ( ) : void |
Init any internal structures.
|
|
Lookup ( String str ) : int |
Lookup the specified field.
|
|
MakeClass ( NormalizationAction theAction, String cls, double high, double low ) : void |
Make the classes using names.
|
|
MakeClass ( NormalizationAction theAction, int classFrom, int classTo, int high, int low ) : void |
Make the classes based on numbers.
|
|
MakePassThrough ( ) : void |
Make this a pass-through field.
|
|
Normalize ( double v ) : double |
Normalize the specified value.
|
|
ToString ( ) : String |
Method | Description | |
---|---|---|
EncodeOneOf ( int classNumber ) : double[] |
Perform the encoding for "one of".
|
|
EncodeSingleField ( int classNumber ) : double[] |
Encode a single field.
|
public AddRawHeadings ( StringBuilder line, String prefix, |
||
line | StringBuilder | The line to write the raw headings to. |
prefix | String | The prefix to place. |
format | The format to use. | |
return | void |
public AnalystField ( |
||
field | The field to clone. | |
return | System |
public AnalystField ( NormalizationAction theAction, String theName ) : System | ||
theAction | NormalizationAction | The desired action. |
theName | String | The name of this column. |
return | System |
public AnalystField ( NormalizationAction theAction, String theName, double ahigh, double alow, double nhigh, double nlow ) : System | ||
theAction | NormalizationAction | The normalization action to take. |
theName | String | The name of this field. |
ahigh | double | The actual high. |
alow | double | The actual low. |
nhigh | double | The normalized high. |
nlow | double | The normalized low. |
return | System |
public AnalystField ( String theName, NormalizationAction theAction, double high, double low ) : System | ||
theName | String | The name of the field. |
theAction | NormalizationAction | The action to use. |
high | double | The high value. |
low | double | The low value. |
return | System |
public AnalystField ( double theNormalizedHigh, double theNormalizedLow ) : System | ||
theNormalizedHigh | double | The normalized high. |
theNormalizedLow | double | The normalized low. |
return | System |
public Analyze ( double d ) : void | ||
d | double | The value to analyze. |
return | void |
public DeNormalize ( double v ) : double | ||
v | double | The value to normalize. |
return | double |
public DetermineClass ( double data ) : |
||
data | double | The data to analyze. |
return |
public DetermineClass ( int pos, double data ) : |
||
pos | int | The position to begin. |
data | double | The array to check. |
return |
public DetermineMode ( EncogAnalyst analyst ) : int | ||
analyst | EncogAnalyst | The analyst to use. |
return | int |
public Encode ( String str ) : double[] | ||
str | String | The string to encode. |
return | double[] |
public Encode ( int classNumber ) : double[] | ||
classNumber | int | The class number. |
return | double[] |
public EncodeEquilateral ( int classNumber ) : double[] | ||
classNumber | int | The class number. |
return | double[] |
public Lookup ( String str ) : int | ||
str | String | The name of the field to lookup. |
return | int |
public MakeClass ( NormalizationAction theAction, String cls, double high, double low ) : void | ||
theAction | NormalizationAction | The action to use. |
cls | String | The class names. |
high | double | The high value. |
low | double | The low value. |
return | void |
public MakeClass ( NormalizationAction theAction, int classFrom, int classTo, int high, int low ) : void | ||
theAction | NormalizationAction | The action. |
classFrom | int | The starting class. |
classTo | int | The ending class. |
high | int | The high value. |
low | int | The low value. |
return | void |
public Normalize ( double v ) : double | ||
v | double | The value to normalize. |
return | double |