📄 vnl_brent.h
字号:
// This is vxl/vnl/algo/vnl_brent.h
#ifndef vnl_brent_h_
#define vnl_brent_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \author awf@robots.ox.ac.uk
// \date 07 Dec 00
//
// \verbatim
// Modifications
// 31 May 2001 Ian Scott (Manchester). Added some documentation
// 31 May 2001 Ian Scott (Manchester). Added minimize_given_bounds_and_1st_f
// \endverbatim
#include <vnl/vnl_cost_function.h>
#include <vnl/vnl_nonlinear_minimizer.h>
struct vnl_brent_data;
//: Brent 1D minimizer
// This minimised uses both golden section search and parbolic interpolation
// for a fast and robust function minimiser.
class vnl_brent : public vnl_nonlinear_minimizer
{
public:
vnl_brent(vnl_cost_function* functor);
~vnl_brent();
//: Find a minimum of f(x) near to ax.
double minimize(double ax);
//: Find the minimum value of f(x) within a<= x <= c.
// The minimum value is the return value, and *xmin the relevant value of x.
// You need to provide a bracket for the minimum
// Also returns fa = f(a), etc.
double minimize_given_bounds(double ax, double bx, double cx,
double tol,
double *xmin);
//: Save time over minimize_given_bounds() if you know f(b)
// This function avoids a single computation of f, if you already know
// it.
double minimize_given_bounds_and_1st_f(double ax, double bx, double fb,
double cx, double tol, double *xmin);
//: Given distinct points ax, and bx, find a bracket for the minimum.
// Return a bracket ax < bx < cx, f(b) < f(a), f(b) < f(c) for minimum.
// Also returns fa = f(a), etc.
void bracket_minimum(double *ax, double *bx, double *cx,
double *fa, double *fb, double *fc);
//: Given distinct points ax, and bx, find a bracket for the minimum.
// Return a bracket ax < bx < cx, f(b) < f(a), f(b) < f(c) for minimum.
void bracket_minimum(double *ax, double *bx, double *cx);
protected:
vnl_brent_data *p;
};
#endif // vnl_brent_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -