Package DistLib
Class wilcox
- java.lang.Object
-
- DistLib.wilcox
-
public class wilcox extends java.lang.ObjectWrapper of functions for Wilcoxon distribution.This actually the Mann-Whitney Ux statistic.
-
-
Field Summary
Fields Modifier and Type Field Description static intWILCOX_MMAXstatic intWILCOX_NMAX
-
Constructor Summary
Constructors Constructor Description wilcox()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static doublecumulative(double x, double m, double n)Cumulative distribution function of the Wilcoxon distribution.static doubledensity(double x, double m, double n)density functionstatic doublequantile(double x, double m, double n)The quantile function of the Wilcoxon distribution.static doublerandom(double m, double n)Random variates from the Wilcoxon distribution.
-
-
-
Field Detail
-
WILCOX_MMAX
public static final int WILCOX_MMAX
- See Also:
- Constant Field Values
-
WILCOX_NMAX
public static final int WILCOX_NMAX
- See Also:
- Constant Field Values
-
-
Method Detail
-
density
public static double density(double x, double m, double n)density function- Parameters:
x-m-n-- Returns:
- density
-
cumulative
public static double cumulative(double x, double m, double n)Cumulative distribution function of the Wilcoxon distribution.
-
quantile
public static double quantile(double x, double m, double n)The quantile function of the Wilcoxon distribution.
-
random
public static double random(double m, double n)Random variates from the Wilcoxon distribution.
-
-