function f = himmelblau ( x ) %% HIMMELBLAU computes the Himmelblau function. % % Discussion: % % This function has 4 global minima: % % X* = ( 3, 2 ), F(X*) = 0. % X* = ( 3.58439, -1.84813 ), F(X*) = 0. % X* = ( -3.77934, -3.28317 ), F(X*) = 0. % X* = ( -2.80512, 3.13134 ), F(X*) = 0. % % Modified: % % 26 January 2008 % % Author: % % Jeff Borggaard % % Reference: % % David Himmelblau, % Applied Nonlinear Programming, % McGraw Hill, 1972, % ISBN13: 978-0070289215, % LC: T57.8.H55. % % Parameters: % % Input, real X(2), the argument of the function. % % Output, real F, the value of the function at X. % if ( length ( x ) ~= 2 ) error ( 'Error: function expects a two dimensional input\n' ); end f = ( x(1)^2 + x(2) - 11 )^2 ... + ( x(1) + x(2)^2 - 7 )^2;