Class TDistribution
java.lang.Object
org.ojalgo.random.RandomNumber
org.ojalgo.random.AbstractContinuous
org.ojalgo.random.TDistribution
- All Implemented Interfaces:
Comparable<RandomNumber>, DoubleSupplier, Supplier<Double>, BasicFunction, NullaryFunction<Double>, PrimitiveFunction.Nullary, ContinuousDistribution, Distribution, AccessScalar<Double>, ComparableNumber<RandomNumber>, NumberDefinition
- Direct Known Subclasses:
TDistribution.Degree1, TDistribution.Degree2, TDistribution.Degree3, TDistribution.Degree4, TDistribution.Degree5, TDistribution.DegreeInfinity
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) static final classNested classes/interfaces inherited from interface BasicFunction
BasicFunction.Differentiable<N,F>, BasicFunction.Integratable<N, F>, BasicFunction.PlainUnary<T, R> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final doubleprivate final doubleThe density and distribution functions share a common constant factorprivate final doubleprivate static final Normal -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate doubleapproximateQuantile(double probability) doublegetDensity(double value) In probability theory, a probability density function (pdf), or density of a continuous random variable is a function that describes the relative likelihood for this random variable to occur at a given point.doublegetDistribution(double value) In probability theory and statistics, the cumulative distribution function (CDF), or just distribution function, describes the probability that a real-valued random variable X with a given probability distribution will be found at a value less than or equal to x.doubledoublegetQuantile(double probability) The quantile function, for any distribution, is defined for real variables between zero and one and is mathematically the inverse of the cumulative distribution function.doubleSubclasses must override either getStandardDeviation() or getVariance()!static TDistributionof(int degreesOfFreedom) static TDistributionMethods inherited from class AbstractContinuous
generateMethods inherited from class RandomNumber
checkProbabilty, compareTo, doubleValue, floatValue, getStandardDeviation, intValue, invoke, longValue, newSampleSet, random, setRandom, setSeed, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ContinuousDistribution
getLowerConfidenceQuantile, getUpperConfidenceQuantileMethods inherited from interface Distribution
getStandardDeviationMethods inherited from interface NullaryFunction
andThen, get, getAsDoubleMethods inherited from interface NumberDefinition
booleanValue, byteValue, shortValue
-
Field Details
-
_0_0001
private static final double _0_0001- See Also:
-
NORMAL
-
myConstant
private final double myConstantThe density and distribution functions share a common constant factor -
myDegreesOfFreedom
private final double myDegreesOfFreedom
-
-
Constructor Details
-
TDistribution
TDistribution(double degreesOfFreedom)
-
-
Method Details
-
of
-
ofInfinity
-
getDensity
public double getDensity(double value) Description copied from interface:ContinuousDistributionIn probability theory, a probability density function (pdf), or density of a continuous random variable is a function that describes the relative likelihood for this random variable to occur at a given point. The probability for the random variable to fall within a particular region is given by the integral of this variable's density over the region. The probability density function is nonnegative everywhere, and its integral over the entire space is equal to one. WikipediA- Parameters:
value- x- Returns:
- P(x)
-
getDistribution
public double getDistribution(double value) Description copied from interface:ContinuousDistributionIn probability theory and statistics, the cumulative distribution function (CDF), or just distribution function, describes the probability that a real-valued random variable X with a given probability distribution will be found at a value less than or equal to x. Intuitively, it is the "area so far" function of the probability distribution. Cumulative distribution functions are also used to specify the distribution of multivariate random variables. WikipediA- Parameters:
value- x- Returns:
- P(≤x)
-
getExpected
public double getExpected() -
getQuantile
public double getQuantile(double probability) Description copied from interface:ContinuousDistributionThe quantile function, for any distribution, is defined for real variables between zero and one and is mathematically the inverse of the cumulative distribution function. WikipediA The input probability absolutely has to be [0.0, 1.0], but values close to 0.0 and 1.0 may be problematic- Parameters:
probability- P(<=x)- Returns:
- x
-
getVariance
public double getVariance()Description copied from class:RandomNumberSubclasses must override either getStandardDeviation() or getVariance()!- Specified by:
getVariancein interfaceDistribution- Overrides:
getVariancein classRandomNumber- See Also:
-
approximateQuantile
private double approximateQuantile(double probability)
-