Clusterizator.Krab.KrabClusterization.KrabClusterization C# (CSharp) Метод

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

Initializes a new instance of the KrabClusterization class.
public KrabClusterization ( double powerWeight, double normalizedDistanceWeight, double distanceWeight ) : System.Collections.Generic
powerWeight double /// The power weight. ///
normalizedDistanceWeight double /// The normalized distance weight. ///
distanceWeight double /// The distance weight. ///
Результат System.Collections.Generic
        public KrabClusterization(double powerWeight, double normalizedDistanceWeight, double distanceWeight)
        {
            this.powerWeight = powerWeight;
            this.normalizedDistanceWeight = normalizedDistanceWeight;
            this.distanceWeight = distanceWeight;
        }