public static class NeuralMap.Neuron
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
n
The number of samples associated with this neuron.
|
java.util.LinkedList<NeuralMap.Neuron> |
neighbors
Connected neighbors.
|
double[] |
w
Reference vector.
|
int |
y
The cluster label.
|
Constructor and Description |
---|
Neuron(double[] w)
Constructor.
|
public int n
public int y
public final double[] w
public final java.util.LinkedList<NeuralMap.Neuron> neighbors