Class Logit

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Logit.Parametric
      Parametric function where the input array contains the parameters of the logit function, ordered as follows: Lower bound Higher bound
    • Constructor Summary

      Constructors 
      Constructor Description
      Logit()
      Usual logit function, where the lower bound is 0 and the higher bound is 1.
      Logit​(double lo, double hi)
      Logit function.
    • Constructor Detail

      • Logit

        public Logit()
        Usual logit function, where the lower bound is 0 and the higher bound is 1.
      • Logit

        public Logit​(double lo,
                     double hi)
        Logit function.
        Parameters:
        lo - Lower bound of the function domain.
        hi - Higher bound of the function domain.