Class CKMSQuantiles.Quantile

  • Enclosing class:
    CKMSQuantiles

    static class CKMSQuantiles.Quantile
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) double epsilon
      Allowed error.
      (package private) double quantile
      Quantile.
      (package private) double u
      Helper used in the error function f(), see definition 5 in the paper.
      (package private) double v
      Helper used in the error function f(), see definition 5 in the paper.
    • Constructor Summary

      Constructors 
      Constructor Description
      Quantile​(double quantile, double epsilon)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • quantile

        final double quantile
        Quantile. Must be between 0 and 1.
      • epsilon

        final double epsilon
        Allowed error. Must be between 0 and 1.
      • u

        final double u
        Helper used in the error function f(), see definition 5 in the paper.
      • v

        final double v
        Helper used in the error function f(), see definition 5 in the paper.
    • Constructor Detail

      • Quantile

        Quantile​(double quantile,
                 double epsilon)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object