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

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

Introduction

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

Prototype

double DEFAULT_INVERSE_ABSOLUTE_ACCURACY

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

Click Source Link

Document

Default inverse cumulative probability accuracy

Usage

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

/**
 * Adds options to the internal list of options.
 *///from w w w.j  a  v  a2  s.  c o  m
@Override
public void defineOptions() {
    super.defineOptions();

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

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