Package interfaces

Interface Method

All Known Implementing Classes:
AbstractGradientMethod, ConjugateGradientMethod, FastGradientDescentMethod, GradientDescentMethod

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

      double[] findMinimum​(Function function, double[] x0) throws java.io.IOException
      search minimum of the function with start from the point in x_0
      Parameters:
      function - explores function
      x0 - point for the start of exploring
      Returns:
      minimum of the function
      Throws:
      java.io.IOException - exception when log from function computing throw exception