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.

evbrown(x)
function y = evbrown(x)

% Name: Brown's Almost Linear
% 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: 5
% Initial Point/ Initial Interval: [0,0,0,0,0] /([-2,2],...,[-2,2])
% Matlab Code by Tiago Montanher (Mar. 06, 2009).

 y1 = 2*x(1) + x(2) + x(3) + x(4) + x(5) - 6;
 y2 = x(1) + 2*x(2) + x(3) + x(4) + x(5) - 6;
 y3 = x(1) + x(2) + 2*x(3) + x(4) + x(5) - 6;
 y4 = x(1) + x(2) + x(3) + 2*x(4) + x(5) - 6;
 y5 = x(1)*x(2)*x(3)*x(4)*x(5) - 1;
 y  = [y1, y2, y3, y4, y5];
end

Contact us at files@mathworks.com