com.opengamma.analytics.math.statistics.descriptive.PopulationStandardDeviationCalculator.java Source code

Java tutorial

Introduction

Here is the source code for com.opengamma.analytics.math.statistics.descriptive.PopulationStandardDeviationCalculator.java

Source

/**
 * Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.analytics.math.statistics.descriptive;

import org.apache.commons.lang.Validate;

import com.opengamma.analytics.math.function.Function1D;

/**
 * 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 extends Function1D<double[], Double> {
    private static final Function1D<double[], Double> VARIANCE = new PopulationVarianceCalculator();

    /**
     * @param x The array of data, not null, must contain at least two data points
     * @return The population standard deviation
     */
    @Override
    public Double evaluate(final double[] x) {
        Validate.notNull(x, "x");
        Validate.isTrue(x.length > 1, "Need at least two points to calculate standard deviation");
        return Math.sqrt(VARIANCE.evaluate(x));
    }

}