


/**
 * Interface for a function in one variables.
 * @author sg
 */
public interface Function1 {
	/**
	 * @param x 1. variable of the function
	 * @return function value
	 */
	public double f(double x);
}


