Optimization: principles and algorithms, by Michel Bierlaire
ex0711.m
Go to the documentation of this file.
1 %> \file
2 %> \f$F(x)=((x_1+1)^2+ x_2^2 - 2, e^{x_1} + x_2^3 - 2)\f$
3 %> @author <a href="http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
4 %> @date Wed Mar 18 21:46:38 2015
5 %> @ingroup Examples
6 %> @ingroup chap07
7 
8 %> Example 7.11 in \cite Bier15-book
9 function [F,J] = ex0711(x)
10  F = [ (x(1) + 1) * (x(1) + 1) + x(2) * x(2) - 2 ; exp(x(1)) + x(2) * x(2) * x(2) - 2] ;
11  J = [ 2 * (x(1) + 1) , 2 * x(2) ; exp(x(1)) , 3 * x(2) * x(2) ];
12 endfunction
function ex0711(in x)
Example 7.11 in .
Copyright 2015-2018 Michel Bierlaire