KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > math > analysis > FunctionOperator


1 /*
2  * Created on Nov 19, 2003
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.apache.commons.math.analysis;
8
9 import org.apache.commons.math.MathException;
10
11 public interface FunctionOperator {
12
13
14     /**
15      * Evaluate the Function Operator for a given real single variable function.
16      *
17      * @param f the function which should be evaluated
18      * @return the resultant function
19      * @throws MathException if the function couldn't be evaluated
20      */

21     public UnivariateRealFunction evaluate(UnivariateRealFunction f) throws MathException;
22
23 }
Popular Tags