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

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

Introduction

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

Prototype

double DEFAULT_INVERSE_ABSOLUTE_ACCURACY

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

Click Source Link

Document

Default inverse cumulative probability accuracy.

Usage

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

/**
 * Adds options to the internal list of options.
 *//*w  ww.  j  a  v a  2s  . 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",
            TDistribution.DEFAULT_INVERSE_ABSOLUTE_ACCURACY);
}