搜索资源列表
0.618
- 线性搜索,用0.618法求解方程的解,方便快速的找到方程的解-Linear search method with 0.618 equation, conveniently and quickly find the equation
LBFGS
- 解二次函数的LBFGS算法,包括几个子程序,并且用了wolfe 线性搜索法-LBFGS algorithm for solving quadratic function
huangjinfengefa
- 最优化方法求解无约束非线性规化。一维线性搜索,黄金分割法。-Golden Section optimization
bfgsopt
- BFGS法求多元函数的极小值,用迭代方式进行线性搜索。-The minimal value of multivariate function by BFGS method
第2章 线搜索方法
- 寻找最优值,比如说我有数组data,1000个元素,要从里面找x,线性搜索,就是从头找到尾,依次来看data[0]是否等于x,如果不是data[1],data[2],依次类推,一直找到最后一个。速度最慢,但是适用性最广(Finding optimal values)