/**
*
*/
package wblut.math;
// TODO: Auto-generated Javadoc
/**
* Interface for a function of 1 variable.
*
* @param <T> the generic type
* @author Frederik Vanhoutte, W:Blut
*/
public interface WB_Function1D<T> {
/**
* F.
*
* @param x the x
* @return result
*/
public T f(double x);
}