Optimization: principles and algorithms, by Michel Bierlaire
ex1103.m
Go to the documentation of this file.
1 %> @file
2 %> \f$h(x)=(2+x)\cos(2+x)\f$
3 %> @author <a href="http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
4 %> @date Fri Apr 25 23:29:00 2014
5 %> @ingroup Examples
6 %> @ingroup chap11
7 
8 %> Example 11.3 in \cite Bier15-book
9 function h = ex1103(x)
10  h = (2.0 + x) * cos(2.0 + x) ;
11 endfunction
function ex1103(in x)
Example 11.3 in .
Copyright 2015-2018 Michel Bierlaire