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

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

Introduction

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

Prototype

double DEFAULT_INVERSE_ABSOLUTE_ACCURACY

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

Click Source Link

Document

Default inverse cumulative probability accuracy.

Usage

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

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

    m_OptionManager.add("shape", "shape", 0.0);

    m_OptionManager.add("scale", "scale", 1.0);

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