Example #1
0
        private float CalcAvg(CircularList list)
        {
            float avg = 0;

            foreach (float v in list)
            {
                avg += v;
            }
            avg /= list.Count;
            return(avg);
        }
Example #2
0
 public CLInumerator(CircularList list)
 {
     m_list = list;
 }