|
The Encog Project | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<NormalizeInput.NormalizationType>
org.encog.util.NormalizeInput.NormalizationType
public static enum NormalizeInput.NormalizationType
This class support two normalization types. Z-AXIS is the most commonly used normalization type. Multiplicative is used over z-axis when the values are in very close range.
| Enum Constant Summary | |
|---|---|
MULTIPLICATIVE
Use multiplicative normalization. |
|
Z_AXIS
Use z-axis normalization. |
|
| Method Summary | |
|---|---|
static NormalizeInput.NormalizationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NormalizeInput.NormalizationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final NormalizeInput.NormalizationType Z_AXIS
public static final NormalizeInput.NormalizationType MULTIPLICATIVE
| Method Detail |
|---|
public static NormalizeInput.NormalizationType[] values()
for (NormalizeInput.NormalizationType c : NormalizeInput.NormalizationType.values()) System.out.println(c);
public static NormalizeInput.NormalizationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
The Encog Project | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||