Interface ISingleArgmentFunction

  • All Known Implementing Classes:
    MinimumFillDegreeFunction, R_F

    public interface ISingleArgmentFunction
    Generic mathematical function that takes a single argument.
    Author:
    Daniele Andreis
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getValue​(double x)
      Return the value of the function in a specific point.
      void setParameters​(double... params)
      Set the parameters for the particular function.
    • Method Detail

      • getValue

        double getValue​(double x)
                 throws ArithmeticException
        Return the value of the function in a specific point.
        Parameters:
        x - the point where evaluate the function.
        Returns:
        the function value.
        Throws:
        ArithmeticException
      • setParameters

        void setParameters​(double... params)
        Set the parameters for the particular function.

        The list and definition of the parameters are described in the class documentation of each function.

        Parameters:
        params - the parameters to set.