CCT.NUI.Core.Clustering.KMeans.IterateUntilStable C# (CSharp) Method

IterateUntilStable() public method

public IterateUntilStable ( ) : void
return void
        public void IterateUntilStable()
        {
            int[] counts;
            do
            {
                counts = this.clusters.Select(c => c.PointCount).ToArray();
                this.IterateOnce();
            } while (DetectCountChange(counts));
        }