Java source code of 'jhplot.math.Function'

package jhplot.math;

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