A+ A A-

I. Mathematical Expression:

$$f(X)=\sum^{20}_{i=1} \left[\left(x_1+B_i x_2 + C_i x^2_2\right)-A_i\right]^2$$

where:

\(\bullet\) \(\left\{\left[A\right],\left[B\right],\left[C\right]\right\}=\left\{\begin{bmatrix}
4.284\\
4.149\\
3.877\\
0.533\\
2.211\\
2.389\\
2.145\\
3.231\\
1.998\\
1.379\\
2.106\\
1.428\\
1.011\\
2.179\\
2.858\\
1.388\\
1.651\\
1.593\\
1.046\\
2.152
\end{bmatrix},\begin{bmatrix}
0.286\\
0.973\\
0.384\\
0.276\\
0.973\\
0.543\\
0.957\\
0.948\\
0.543\\
0.797\\
0.936\\
0.889\\
0.006\\
0.828\\
0.399\\
0.617\\
0.939\\
0.784\\
0.072\\
0.889
\end{bmatrix},\begin{bmatrix}
0.645\\
0.585\\
0.310\\
0.058\\
0.455\\
0.779\\
0.259\\
0.202\\
0.028\\
0.099\\
0.142\\
0.296\\
0.175\\
0.180\\
0.842\\
0.039\\
0.103\\
0.620\\
0.158\\
0.704
\end{bmatrix}\right\}\)

\(\bullet\) \(-10\leq x_i \leq 10\) , \(i=1,2\)

\(\bullet\) Best known solution: \(f_{min}(X^*) = 16.081730132960381\)

\(\bullet\) \(x^*_i = (0.864787285816574, 1.235748499036571)\)

 

II. Citation Policy:

If you publish material based on databases obtained from this repository, then, in your acknowledgments, please note the assistance you received by using this repository. This will help others to obtain the same data sets and replicate your experiments. We suggest the following pseudo-APA reference format for referring to this repository:

Ali R. Al-Roomi (2015). Unconstrained Single-Objective Benchmark Functions Repository [https://www.al-roomi.org/benchmarks/unconstrained]. Halifax, Nova Scotia, Canada: Dalhousie University, Electrical and Computer Engineering.

Here is a BiBTeX citation as well:

@MISC{Al-Roomi2015,
author = {Ali R. Al-Roomi},
title = {{Unconstrained Single-Objective Benchmark Functions Repository}},
year = {2015},
address = {Halifax, Nova Scotia, Canada},
institution = {Dalhousie University, Electrical and Computer Engineering},
url = {https://www.al-roomi.org/benchmarks/unconstrained}
}

 

III. 2&3D-Plots:

 

IV. Controllable 3D Model:

- In case you want to adjust the rendering mode, camera position, background color or/and 3D measurement tool, please check the following link

- In case you face any problem to run this model on your internet browser (it does not work on mobile phones), please check the following link

 

V. MATLAB M-File:

% Judge's Function
% Range of initial points: -10 <= xj <= 10 , j=1,2
% Best known global minima: (x1,x2)=(0.864787285816574,1.235748499036571)
% f(x1,x2)=16.081730132960381
% Coded by: Ali R. Alroomi | Last Update: 18 May 2015 | www.al-roomi.org

clear
clc
warning off

x1min=-2;
x1max=2;
x2min=-2;
x2max=2;
R=1500; % steps resolution
x1=x1min:(x1max-x1min)/R:x1max;
x2=x2min:(x2max-x2min)/R:x2max;

% constant vectors
A=[4.284,4.149,3.877,0.533,2.211,2.389,2.145,3.231,1.998,1.379,2.106,1.428,1.011,2.179,2.858,1.388,1.651,1.593,1.046,2.152];
B=[0.286,0.973,0.384,0.276,0.973,0.543,0.957,0.948,0.543,0.797,0.936,0.889,0.006,0.828,0.399,0.617,0.939,0.784,0.072,0.889];
C=[0.645,0.585,0.310,0.058,0.455,0.779,0.259,0.202,0.028,0.099,0.142,0.296,0.175,0.180,0.842,0.039,0.103,0.620,0.158,0.704];

for j=1:length(x1)
   
    for i=1:length(x2)
       
        for k=1:20
            fk(k)=((x1(j)+B(k)*x2(i)+C(k)*x2(i).^2)-A(k)).^2;
        end
       
        f(i)=sum(fk);
       
    end
   
    f_tot(j,:)=f;

end

figure(1)
meshc(x1,x2,f_tot);colorbar;set(gca,'FontSize',12);
xlabel('x_2','FontName','Times','FontSize',20,'FontAngle','italic');
set(get(gca,'xlabel'),'rotation',25,'VerticalAlignment','bottom');
ylabel('x_1','FontName','Times','FontSize',20,'FontAngle','italic');
set(get(gca,'ylabel'),'rotation',-25,'VerticalAlignment','bottom');
zlabel('f(X)','FontName','Times','FontSize',20,'FontAngle','italic');
title('3D View','FontName','Times','FontSize',24,'FontWeight','bold');

figure(2)
mesh(x1,x2,f_tot);view(0,90);colorbar;set(gca,'FontSize',12);
xlabel('x_2','FontName','Times','FontSize',20,'FontAngle','italic');
ylabel('x_1','FontName','Times','FontSize',20,'FontAngle','italic');
zlabel('f(X)','FontName','Times','FontSize',20,'FontAngle','italic');
title('X-Y Plane View','FontName','Times','FontSize',24,'FontWeight','bold');

figure(3)
mesh(x1,x2,f_tot);view(90,0);colorbar;set(gca,'FontSize',12);
xlabel('x_2','FontName','Times','FontSize',20,'FontAngle','italic');
ylabel('x_1','FontName','Times','FontSize',20,'FontAngle','italic');
zlabel('f(X)','FontName','Times','FontSize',20,'FontAngle','italic');
title('X-Z Plane View','FontName','Times','FontSize',24,'FontWeight','bold');

figure(4)
mesh(x1,x2,f_tot);view(0,0);colorbar;set(gca,'FontSize',12);
xlabel('x_2','FontName','Times','FontSize',20,'FontAngle','italic');
ylabel('x_1','FontName','Times','FontSize',20,'FontAngle','italic');
zlabel('f(X)','FontName','Times','FontSize',20,'FontAngle','italic');
title('Y-Z Plane View','FontName','Times','FontSize',24,'FontWeight','bold');

Click here to download m-file

 

VI. References:

[1] S. Mishra, "Global Optimization of Some Difficult Benchmark Functions by Cuckoo-Hostco-Evolution Meta-Heuristics," Shillong, India, Aug. 2012. [Online]. Available: http://mpra.ub.uni-muenchen.de/40615/1/CHC-Algorithm.pdf
[2] A. Gavana, "Test Functions Index," Feb. 2013, [Accessed April 01, 2013]. [Online]. Available: http://infinity77.net/global_optimization/test_functions.html
[3] Ali R. Alroomi, "The Farm of Unconstrained Benchmark Functions," University of Bahrain, Electrical and Electronics Department, Bahrain, Oct. 2013. [Online]. Available: http://www.al-roomi.org/cv/publications