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

com.opengamma.strata.math.impl.statistics.descriptive.IndexAboveQuantileMethod Maven / Gradle / Ivy

There is a newer version: 2.12.46
Show newest version
/*
 * Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.math.impl.statistics.descriptive;

/**
 * Implementation of a quantile estimator.
 * 

* The estimation is one of the sorted sample data. Its index is the smallest integer above (Math.ceil) the quantile * multiplied by the size of the sample. The Java index is the above index minus 1 (array index start at 0 and not 1). *

* Reference: Value-At-Risk, OpenGamma Documentation 31, Version 0.1, April 2015. */ public final class IndexAboveQuantileMethod extends DiscreteQuantileMethod { /** Default implementation. */ public static final IndexAboveQuantileMethod DEFAULT = new IndexAboveQuantileMethod(); @Override int index(double quantileSize) { return (int) Math.ceil(quantileSize); } @Override int sampleCorrection(int sampleSize) { return sampleSize; } @Override double indexShift() { return 0d; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy