package jhplot.math; /** * BSD License * * @author Yann RICHET */ public interface Function { public double f(double x); }