Java org.apache.commons.math3.distribution FDistribution fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.distribution FDistribution fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.distribution FDistribution.

The text is from its open source code.

Field

doubleDEFAULT_INVERSE_ABSOLUTE_ACCURACY
Default inverse cumulative probability accuracy.

Constructor

FDistribution(double numeratorDegreesOfFreedom, double denominatorDegreesOfFreedom)
Creates an F distribution using the given degrees of freedom.
FDistribution(double numeratorDegreesOfFreedom, double denominatorDegreesOfFreedom, double inverseCumAccuracy)
Creates an F distribution using the given degrees of freedom and inverse cumulative probability accuracy.

Method

doublecumulativeProbability(double x)
The implementation of this method is based on
doubleinverseCumulativeProbability(final double p)
The default implementation returns
  • #getSupportLowerBound() for p = 0 ,
  • #getSupportUpperBound() for p = 1 .
doubleprobability(double x)