Example usage for org.apache.commons.math3.stat.descriptive StorelessUnivariateStatistic copy

List of usage examples for org.apache.commons.math3.stat.descriptive StorelessUnivariateStatistic copy

Introduction

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

Prototype

StorelessUnivariateStatistic copy();

Source Link

Document

Returns a copy of the statistic with the same internal state.

Usage

From source file:gedi.util.datastructure.array.functions.StorelessUnivariateStatisticAdapter.java

public StorelessUnivariateStatisticAdapter(StorelessUnivariateStatistic commons) {
    this.commons = commons.copy();
    commons.clear();
}