Encog.Neural.SOM.Training.Neighborhood.NeighborhoodBubble.NeighborhoodBubble C# (CSharp) Метод

NeighborhoodBubble() публичный Метод

Create a bubble neighborhood function that will return 1.0 (full update) for any neuron that is plus or minus the width distance from the winning neuron.
public NeighborhoodBubble ( int radius ) : System
radius int bubble, is actually two times this parameter.
Результат System
        public NeighborhoodBubble(int radius)
        {
            _radius = radius;
        }