zhanfeng 发表于 2004-12-16 14:45

单纯形加速法

<P>求单纯形加速法的matlab算法。</P>
<P>谢谢!</P>

ilikenba 发表于 2004-12-16 15:23

matlab的工具箱里面就有加速的单纯型方法!

zhanfeng 发表于 2004-12-16 21:34

是fminsearch()函数吗?

madio 发表于 2004-12-16 21:42

<P>Algorithms:fminsearch uses the simplex search method of . This is a direct search method that does not use numerical or analytic gradients as in fminunc. If n is the length of x, a simplex in n-dimensional space is characterized by the n+1 distinct vectors that are its vertices. In two-space, a simplex is a triangle; in three-space, it is a pyramid. At each step of the search, a new point in or near the current simplex is generated. The function value at the new point is compared with the function's values at the vertices of the simplex and, usually, one of the vertices is replaced by the new point, giving a new simplex. This step is repeated until the diameter of the simplex is less than the specified tolerance. fminsearch is generally less efficient than fminunc for problems of order greater than two. However, when the problem is highly discontinuous, fminsearch might be more robust.</P><P>这是帮助中的说明!确实用的是单纯型方法!</P>

zhanfeng 发表于 2004-12-18 15:26

谢谢。
页: [1]
查看完整版本: 单纯形加速法