Example usage for org.apache.commons.math.stat.descriptive StorelessUnivariateStatistic clear

List of usage examples for org.apache.commons.math.stat.descriptive StorelessUnivariateStatistic clear

Introduction

In this page you can find the example usage for org.apache.commons.math.stat.descriptive StorelessUnivariateStatistic clear.

Prototype

void clear();

Source Link

Document

Clears the internal state of the Statistic

Usage

From source file:org.apache.accumulo.core.util.Stat.java

public void clear() {
    for (StorelessUnivariateStatistic statistic : stats) {
        statistic.clear();
    }
}