org.encog.util.normalize.input
public interface InputField extends Serializable
Modifier and Type | Method and Description |
---|---|
void |
applyMinMax(double d)
Update the min and max values for this field with the specified values.
|
double |
getCurrentValue() |
double |
getMax() |
double |
getMin() |
boolean |
getUsedForNetworkInput() |
double |
getValue(int i)
Called for input field types that require an index to get the current
value.
|
void |
setCurrentValue(double d)
Set the current value of this field.
|
void |
setMax(double max)
Set the current max value.
|
void |
setMin(double min)
Set the current min value.
|
void applyMinMax(double d)
d
- The current value to use to update min and max.double getCurrentValue()
double getMax()
double getMin()
boolean getUsedForNetworkInput()
double getValue(int i)
i
- The index to read.void setCurrentValue(double d)
d
- The current value of this field.void setMax(double max)
max
- The maximum value encountered on this field so far.void setMin(double min)
min
- The minimum value encountered on this field so far.Copyright © 2014. All Rights Reserved.