Code covered by the BSD License  

Highlights from
INTSOLVER: An interval based solver for Global Optimization

from INTSOLVER: An interval based solver for Global Optimization by Tiago Montanher
Interval based functions to solve small global optimization problems with guaranteed bounds.

evferraristronconi(x)
function y = evferraristronconi(x)

% Name: Ferraris&Tronconi
% Reference: 
% Handbook of Test Problems in Local and Global Optimization. C.A. Floudas,
% P. M. Pardalos, C.S. Adjiman, W. R. Esposito, Z.H. Gumus, S. T. Harding,
% J.L. Klepeis, C. A. Meyer, C. A. Schweiger. 1999. Kluwer Publishers.
% Variables: 2
% Initial Point/ Initial Interval: [0.5,3] /([0.25,1],[1.5,2*pi])
% Matlab Code by Tiago Montanher (Mar. 06, 2009).

 y1 = 0.5* sin(x(1)*x(2)) - 0.25*x(2) / pi - 0.5 *x(1);
 y2 = (1 - 0.25/pi)*(exp(2*x(1)) - exp(1)) + exp(1)*x(2)/pi - 2*exp(1)*x(1);
 y  = [y1, y2];
end

Contact us at files@mathworks.com