Optimization: principles and algorithms, by Michel Bierlaire
run0712.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 7.12 with Newton's method, n variables
3 %>
4 %> @ingroup Running
5 %> @ingroup chap07
6 %> @author <a href="http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
7 %> @date Wed Mar 18 21:51:47 2015
8 
9 %> @note Calls \ref newtonNVariables
10 
11 x0 = [1 ; 1] ;
12 root = newtonNVariables('ex0712',x0,1.0e-15)
13 
14 x0 = [-1 ; -1] ;
15 root = newtonNVariables('ex0712',x0,1.0e-15)
16 
17 x0 = [0 ; 1] ;
18 root = newtonNVariables('ex0712',x0,1.0e-15)
19 
20 
function ex0712(in x)
Example 7.12 in .
Copyright 2015-2018 Michel Bierlaire