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