Optimization: principles and algorithms, by Michel Bierlaire
run1502nelderMead.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 15.2 illustrating the Nelder-Nead algorithm (Table 15.1)
3 %>
4 %> @note Calls \ref nelderMead
5 %>
6 %> @ingroup Running
7 %> @ingroup chap15
8 %> @author Michel Bierlaire
9 %> @date Sat Mar 21 18:25:02 2015
10 x0 = [1 2 1.1 ; 1 1.1 2] ;
11 solution = nelderMead('ex1101',x0,1.0e-5,100)
12 
function nelderMead(in obj, in x0, in eps, in maxiter)
Applies the Nelder-Mead algorithm to solve where .
Copyright 2015-2018 Michel Bierlaire