Package quadbase.util

Interface IFunction

All Superinterfaces:
Serializable

public interface IFunction extends Serializable
This interface defines a function y = f(x)
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    getY(double x)
    The method returns the result of y = f(x)
  • Method Details

    • getY

      double getY(double x) throws Exception
      The method returns the result of y = f(x)
      Parameters:
      x - The x value
      Returns:
      The result of the function
      Throws:
      Exception