Apollo 10.0
自动驾驶开放平台
search.cc 文件参考
#include "modules/common/math/search.h"
#include <cmath>
search.cc 的引用(Include)关系图:

浏览源代码.

命名空间

namespace  apollo
 class register implement
 
namespace  apollo::common
 apollo::common
 
namespace  apollo::common::math
 apollo::common::math
 

函数

double apollo::common::math::GoldenSectionSearch (const std::function< double(double)> &func, const double lower_bound, const double upper_bound, const double tol=1e-6)
 Given a unimodal function defined on the interval, find a value on the interval to minimize the function.