📄 vnl_bracket_minimum.h
字号:
// This is core/vnl/algo/vnl_bracket_minimum.h
#ifndef vnl_bracket_minimum_h_
#define vnl_bracket_minimum_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \brief Function to bracket a minimum
// \author Tim Cootes
// \date Feb 2007
//
// \verbatim
// Modifications
// \endverbatim
#include <vnl/vnl_cost_function.h>
//: Given initial values a and b, find bracket a<b<c s.t. f(a)>f(b)<f(c)
// Final function values at a,b,c stored in fa,fb,fc.
//
// The algorithm takes increasingly large steps in a downhill direction
// until it starts going up again. To speed things up, it also fits
// a parabola to the last three points, which it uses to predict the
// possible minimum directly ( hopefully automatically choosing a
// sensible step size).
//
// Note that there's currently nothing
// to stop it if it is supplied with a monotonic function - it will just continue
// forever.
void vnl_bracket_minimum(vnl_cost_function& f,
double& a, double& b, double& c,
double& fa, double& fb, double& fc);
#endif // vnl_bracket_minimum_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -