Accord.Statistics.Measures.HistogramMin C# (CSharp) 메소드

HistogramMin() 공개 정적인 메소드

Gets the minimum value in the histogram.
public static HistogramMin ( this values ) : int
values this Histogram array.
리턴 int
        public static int HistogramMin(this int[] values)
        {
            int min = values.Length;

            for (int i = 0; i < values.Length; i++)
                if (i < min)
                    min = i;

            return min;
        }