com.opengamma.strata.math.impl.statistics.descriptive.PopulationStandardDeviationCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-math Show documentation
Show all versions of strata-math Show documentation
Mathematic support for Strata
/*
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.math.impl.statistics.descriptive;
import java.util.function.Function;
import com.opengamma.strata.collect.ArgChecker;
/**
* Calculates the population standard deviation of a series of data.
* The population standard deviation of a series of data is defined as the square root of
* the population variance (see {@link PopulationVarianceCalculator}).
*/
public class PopulationStandardDeviationCalculator implements Function {
private static final Function VARIANCE = new PopulationVarianceCalculator();
@Override
public Double apply(double[] x) {
ArgChecker.notNull(x, "x");
ArgChecker.isTrue(x.length > 1, "Need at least two points to calculate standard deviation");
return Math.sqrt(VARIANCE.apply(x));
}
}