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.

evcg13(x)
function y = evcg13(x)
  
 y1 = x(1)^2 + x(2)^2 + x(3)^2 + x(4)^2 + x(5)^2 - 10;
 y2 = x(2)*x(3) - 5*x(4)*x(5);
 y3 = x(1)^3 + x(2)^3 + 1;
 
 y = [y1,y2,y3];

end

Contact us at files@mathworks.com