Interface UnivariateMinimizer.Solution

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double search​(double lower, double upper)
      Search for a minimum within the interval [lower, upper].
      double search​(double lower, double initial, double upper)
      Search for a minimum within the interval [lower, upper].
    • Method Detail

      • search

        double search​(double lower,
                      double initial,
                      double upper)
        Search for a minimum within the interval [lower, upper].
        Parameters:
        lower - the lower bound for the bracketing interval which contains a minimum
        initial - an initial guess
        upper - the upper bound for the bracketing interval which contains a minimum
        Returns:
        an approximate minimizer
      • search

        double search​(double lower,
                      double upper)
        Search for a minimum within the interval [lower, upper].
        Parameters:
        lower - the lower bound for the bracketing interval which contains a minimum
        upper - the upper bound for the bracketing interval which contains a minimum
        Returns:
        an approximate minimizer