public FrequencyBinner(int numBins)
        {
            this.numBins = numBins;

            // 256 is a magic number here. seems to work.
            this.tracker = new MaxTracker(256);
        }
Beispiel #2
0
        public FrequencyBinner(int numBins)
        {
            this.numBins = numBins;

            // 256 is a magic number here. seems to work.
            this.tracker = new MaxTracker(256);
        }