Package interfaces
Interface Method
- All Known Implementing Classes:
AbstractGradientMethod,ConjugateGradientMethod
public interface Method
Interface for searching minimum of the function
-
Method Summary
Modifier and Type Method Description double[]findMinimum(Function function, double[] x0)search minimum of the function with start from the point in x_0
-
Method Details
-
findMinimum
search minimum of the function with start from the point in x_0- Parameters:
function- explores functionx0- point for the start of exploring- Returns:
- minimum of the function
- Throws:
java.io.IOException- exception when log from function computing throw exception
-