All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.traces.histogram.average.js Maven / Gradle / Ivy

The newest version!
'use strict';


module.exports = function doAvg(size, counts) {
    var nMax = size.length;
    var total = 0;
    for(var i = 0; i < nMax; i++) {
        if(counts[i]) {
            size[i] /= counts[i];
            total += size[i];
        } else size[i] = null;
    }
    return total;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy