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.

evkubicek(x)
function y = evkubicek(x)

% Name: Kubicek
% 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,0.5] /([0, 1],[0, 1])
% Matlab Code by Tiago Montanher (Mar. 06, 2009).

 R = 0.955;
 g = 1000;
 d = 22;
  
 C1 = 22 / 30;
 
 y1 = (1 - R) * (C1 - x(1)) * exp(10 * x(1) / (1 + 10* x(1) / g))  - x(1);
 y2 = x(1) - 3*x(2) + (1 - R) * (d/10 - 2*x(1) - 3*x(2))* exp(10 * x(2) / (1 + 10* x(2) / g));
 
 y  = [y1, y2];
end

Contact us at files@mathworks.com