Package DistLib

Class wilcox


  • public class wilcox
    extends java.lang.Object
    Wrapper of functions for Wilcoxon distribution.

    This actually the Mann-Whitney Ux statistic.

    • Constructor Summary

      Constructors 
      Constructor Description
      wilcox()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static double cumulative​(double x, double m, double n)
      Cumulative distribution function of the Wilcoxon distribution.
      static double density​(double x, double m, double n)
      density function
      static double quantile​(double x, double m, double n)
      The quantile function of the Wilcoxon distribution.
      static double random​(double m, double n)
      Random variates from the Wilcoxon distribution.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • wilcox

        public wilcox()
    • 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.