KdKeys.DataMining.Clustering.KMeans.Cluster.this C# (CSharp) 메소드

this() 공개 메소드

Returns the one dimensional array data located at the index
public this ( int Index ) : double[]
Index int
리턴 double[]
        public virtual double[] this[int Index]
        {
            get
            {
                //return the Neuron at IList[Index]
                return (double[])this.List[Index];
            }
        }