Interface ISingleArgmentFunction
-
- All Known Implementing Classes:
MinimumFillDegreeFunction,R_F
public interface ISingleArgmentFunctionGeneric mathematical function that takes a single argument.- Author:
- Daniele Andreis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetValue(double x)Return the value of the function in a specific point.voidsetParameters(double... params)Set the parameters for the particular function.
-
-
-
Method Detail
-
getValue
double getValue(double x) throws ArithmeticExceptionReturn the value of the function in a specific point.- Parameters:
x- the point where evaluate the function.- Returns:
- the function value.
- Throws:
ArithmeticException
-
setParameters
void setParameters(double... params)
Set the parameters for the particular function.The list and definition of the parameters are described in the class documentation of each function.
- Parameters:
params- the parameters to set.
-
-