Example usage for org.apache.commons.math3.distribution FDistribution DEFAULT_INVERSE_ABSOLUTE_ACCURACY

List of usage examples for org.apache.commons.math3.distribution FDistribution DEFAULT_INVERSE_ABSOLUTE_ACCURACY

Introduction

In this page you can find the example usage for org.apache.commons.math3.distribution FDistribution DEFAULT_INVERSE_ABSOLUTE_ACCURACY.

Prototype

double DEFAULT_INVERSE_ABSOLUTE_ACCURACY

To view the source code for org.apache.commons.math3.distribution FDistribution DEFAULT_INVERSE_ABSOLUTE_ACCURACY.

Click Source Link

Document

Default inverse cumulative probability accuracy.

Usage

From source file:adams.data.distribution.F.java

/**
 * Adds options to the internal list of options.
 *//* ww  w  .  ja  v  a2s.  c om*/
@Override
public void defineOptions() {
    super.defineOptions();

    m_OptionManager.add("numerator-degrees-of-freedom", "numeratorDegreesOfFreedom", 0.0);

    m_OptionManager.add("denominator-degrees-of-freedom", "denominatorDegreesOfFreedom", 0.0);

    m_OptionManager.add("inverse-cum-accuracy", "inverseCumAccuracy",
            FDistribution.DEFAULT_INVERSE_ABSOLUTE_ACCURACY);
}