Package | Description |
---|---|
org.apache.commons.math3.distribution |
Implementations of common discrete and continuous distributions.
|
org.apache.commons.math3.fraction |
Fraction number type and fraction number formatting.
|
org.apache.commons.math3.stat.inference |
Classes providing hypothesis testing.
|
Modifier and Type | Method and Description |
---|---|
private FieldMatrix<BigFraction> |
KolmogorovSmirnovDistribution.createH(double d)
Deprecated.
Creates
H of size m x m as described in [1] (see above). |
Modifier and Type | Method and Description |
---|---|
java.lang.StringBuffer |
FractionFormat.format(java.lang.Object obj,
java.lang.StringBuffer toAppendTo,
java.text.FieldPosition pos)
Formats an object and appends the result to a StringBuffer.
|
Constructor and Description |
---|
BigFraction(double value,
double epsilon,
int maxIterations)
Create a fraction given the double value and maximum error allowed.
|
BigFraction(double value,
double epsilon,
int maxDenominator,
int maxIterations)
Create a fraction given the double value and either the maximum error
allowed or the maximum number of denominator digits.
|
BigFraction(double value,
int maxDenominator)
Create a fraction given the double value and maximum denominator.
|
Fraction(double value)
Create a fraction given the double value.
|
Fraction(double value,
double epsilon,
int maxIterations)
Create a fraction given the double value and maximum error allowed.
|
Fraction(double value,
double epsilon,
int maxDenominator,
int maxIterations)
Create a fraction given the double value and either the maximum error
allowed or the maximum number of denominator digits.
|
Fraction(double value,
int maxDenominator)
Create a fraction given the double value and maximum denominator.
|
Modifier and Type | Method and Description |
---|---|
private FieldMatrix<BigFraction> |
KolmogorovSmirnovTest.createExactH(double d,
int n)
Creates
H of size m x m as described in [1] (see above). |