예제 #1
0
 public double DistanceToNeuron(KohonenLayerNeuron neuron)
 {
     return(Math.Sqrt(Math.Pow(Position.X, neuron.Position.X) + Math.Pow(Position.Y, neuron.Position.Y)));
 }
예제 #2
0
 public InputDataResult(InputData inputData, KohonenLayerNeuron neuron)
 {
     InputData = inputData;
     Neuron    = neuron;
 }