KdKeys.DataMining.Clustering.KMeans.Cluster.this C# (CSharp) Method

this() public method

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