CCT.NUI.Core.Clustering.KMeans.IterateUntilStable C# (CSharp) 메소드

IterateUntilStable() 공개 메소드

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