public class MappedInputs extends Object
Modifier and Type | Field and Description |
---|---|
private Vector<Double> |
inputDistances |
private Vector<String> |
inputNames |
private int |
number |
Constructor and Description |
---|
MappedInputs()
Default Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addMappedInput(String name,
Double dist)
Adds an input datum defined by argument
name and distance to the list. |
void |
clearMappedInputs()
Clears all input data.
|
double[] |
getMappedInputDistances()
Returns an array of distances between this unit's weight vector and the vectors of the mapped input data.
|
String[] |
getMappedInputNames()
Returns an array of strings containing the identifiers of the mapped input data.
|
int |
getNumberOfMappedInputs()
Returns the number of mapped input data.
|
boolean |
isMapped(String name)
Checks if an input datum with identifier
name is contained. |
public void addMappedInput(String name, Double dist)
name
and distance
to the list. It is inserted
at a position to retain ordering by ascending distance.name
- the identification string of the input datum.dist
- the distance between a unit's weight vector and the inptu datum. This value is precalcuated and
independent from this class.public void clearMappedInputs()
number
variable
to 0 accordingly.public double[] getMappedInputDistances()
public String[] getMappedInputNames()
getMappedInputDistances()
.public int getNumberOfMappedInputs()
public boolean isMapped(String name)
name
is contained.name
- the name of the input datum to be checked.true
if an input datum with identifier specified by argument name
is mapped
onto this unit, false
otherwise.