Interface LinkFunction

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double derivative​(double x)
      Derivative of the link function, i.e., g'(x).
      double inverse​(double x)
      Inverse of the link function, i.e., g-1(x).
    • Method Detail

      • inverse

        double inverse​(double x)
        Inverse of the link function, i.e., g-1(x).
        Parameters:
        x - x
        Returns:
        g-1(x)
      • derivative

        double derivative​(double x)
        Derivative of the link function, i.e., g'(x).
        Parameters:
        x - x
        Returns:
        g'(x)