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