SSJ
3.3.1
Stochastic Simulation in Java
|
Extends the class AndersonDarlingDist for the Anderson–Darling distribution (see [6], [165], [225] ). More...
Public Member Functions | |
AndersonDarlingDistQuick (int n) | |
Constructs an Anderson–Darling distribution for a sample of size \(n\). | |
double | density (double x) |
double | cdf (double x) |
Returns the distribution function \(F(x)\). More... | |
double | barF (double x) |
Returns \(\bar{F}(x) = 1 - F(x)\). More... | |
double | inverseF (double u) |
Returns the inverse distribution function \(F^{-1}(u)\), defined in ( inverseF ). More... | |
String | toString () |
Returns a String containing information about the current distribution. | |
Public Member Functions inherited from AndersonDarlingDist | |
AndersonDarlingDist (int n) | |
Constructs an Anderson–Darling distribution for a sample of size \(n\). | |
double | density (double x) |
double | cdf (double x) |
Returns the distribution function \(F(x)\). More... | |
double | barF (double x) |
Returns \(\bar{F}(x) = 1 - F(x)\). More... | |
double | inverseF (double u) |
Returns the inverse distribution function \(F^{-1}(u)\), defined in ( inverseF ). More... | |
int | getN () |
Returns the parameter \(n\) of this object. | |
void | setN (int n) |
Sets the parameter \(n\) of this object. | |
double [] | getParams () |
Return an array containing the parameter \(n\) of the current distribution. | |
String | toString () |
Returns a String containing information about the current distribution. | |
Public Member Functions inherited from ContinuousDistribution | |
abstract double | density (double x) |
Returns \(f(x)\), the density evaluated at \(x\). More... | |
double | barF (double x) |
Returns the complementary distribution function. More... | |
double | inverseBrent (double a, double b, double u, double tol) |
Computes the inverse distribution function \(x = F^{-1}(u)\), using the Brent-Dekker method. More... | |
double | inverseBisection (double u) |
Computes and returns the inverse distribution function \(x = F^{-1}(u)\), using bisection. More... | |
double | inverseF (double u) |
Returns the inverse distribution function \(x = F^{-1}(u)\). More... | |
double | getMean () |
Returns the mean. More... | |
double | getVariance () |
Returns the variance. More... | |
double | getStandardDeviation () |
Returns the standard deviation. More... | |
double | getXinf () |
Returns \(x_a\) such that the probability density is 0 everywhere outside the interval \([x_a, x_b]\). More... | |
double | getXsup () |
Returns \(x_b\) such that the probability density is 0 everywhere outside the interval \([x_a, x_b]\). More... | |
void | setXinf (double xa) |
Sets the value \(x_a=\) xa , such that the probability density is 0 everywhere outside the interval \([x_a, x_b]\). More... | |
void | setXsup (double xb) |
Sets the value \(x_b=\) xb , such that the probability density is 0 everywhere outside the interval \([x_a, x_b]\). More... | |
Static Public Member Functions | |
static double | density (int n, double x) |
Computes the density of the Anderson–Darling distribution with parameter \(n\). | |
static double | cdf (int n, double x) |
Computes the Anderson–Darling distribution function \(F_n(x)\) at \(x\) for sample size \(n\). More... | |
static double | barF (int n, double x) |
Computes the complementary distribution function \(\bar{F}_n(x)\) with parameter \(n\). | |
static double | inverseF (int n, double u) |
Computes the inverse \(x = F_n^{-1}(u)\) of the Anderson–Darling distribution with parameter \(n\). | |
Static Public Member Functions inherited from AndersonDarlingDist | |
static double | density (int n, double x) |
Computes the density of the Anderson–Darling distribution with parameter \(n\). | |
static double | cdf (int n, double x) |
Computes the Anderson–Darling distribution function \(F_n(x)\), with parameter \(n\), using Marsaglia’s and al. More... | |
static double | barF (int n, double x) |
Computes the complementary distribution function \(\bar{F}_n(x)\) with parameter \(n\). | |
static double | inverseF (int n, double u) |
Computes the inverse \(x = F_n^{-1}(u)\) of the Anderson–Darling distribution with parameter \(n\). | |
Static Package Functions | |
[static initializer] | |
Additional Inherited Members | |
Public Attributes inherited from ContinuousDistribution | |
int | decPrec = 15 |
Static Protected Member Functions inherited from AndersonDarlingDist | |
static double | density_N_1 (double x) |
static double | cdf_N_1 (double x) |
static double | barF_N_1 (double x) |
static double | inverse_N_1 (double u) |
Protected Attributes inherited from AndersonDarlingDist | |
int | n |
Protected Attributes inherited from ContinuousDistribution | |
double | supportA = Double.NEGATIVE_INFINITY |
double | supportB = Double.POSITIVE_INFINITY |
Static Protected Attributes inherited from ContinuousDistribution | |
static final double | XBIG = 100.0 |
static final double | XBIGM = 1000.0 |
static final double [] | EPSARRAY |
Extends the class AndersonDarlingDist for the Anderson–Darling distribution (see [6], [165], [225] ).
This class implements a version faster and more precise in the tails than class AndersonDarlingDist.
double barF | ( | double | x | ) |
Returns \(\bar{F}(x) = 1 - F(x)\).
x | value at which the complementary distribution function is evaluated |
x
Implements Distribution.
double cdf | ( | double | x | ) |
Returns the distribution function \(F(x)\).
x | value at which the distribution function is evaluated |
x
Implements Distribution.
|
static |
Computes the Anderson–Darling distribution function \(F_n(x)\) at \(x\) for sample size \(n\).
For \(0.2 < x < 5\), the asymptotic distribution \(F_{\infty}(x) = \lim_{n\to\infty} F_n(x)\) was first computed by numerical integration; then a linear correction \(O(1/n)\) obtained by simulation was added. For \(5 < x\), the Grace-Wood empirical approximation [75] is used. For \(x < 0.2\), the Marsaglias’ approximation [173] for \(n=\infty\) is used.
For \(n>6\), the method gives at least 3 decimal digits of precision except for small \(x\); for \(n \le6\), it gives at least 2 decimal digits of precision except for small \(x\). For \(n=1\), the exact formula \(F_1(x) = \sqrt{1 - 4e^{-x-1}}\), for \(x\ge\ln(4) - 1\), is used.
double inverseF | ( | double | u | ) |
Returns the inverse distribution function \(F^{-1}(u)\), defined in ( inverseF ).
u | value in the interval \((0,1)\) for which the inverse distribution function is evaluated |
u
Implements Distribution.