-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalculate_IGD_metamodel.m
77 lines (65 loc) · 2.77 KB
/
calculate_IGD_metamodel.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
% Copyright [2016] [Proteek Chandan Roy]
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
%
% Proteek Chandan Roy, 2016
% Contact: [email protected], [email protected]
clear all;
problem = 'tnk';
method = 7;
r = 1;
%for r = 1:10
h = figure;
hold all;
%datafilename = strcat('IGD Calculation/methodology',num2str(method),'_',problem,'_obj_',num2str(r),'.txt');
%cvfilename = strcat('IGD Calculation/methodology',num2str(method),'_',problem,'_cv_',num2str(r),'.txt');
datafilename = strcat('methodology',num2str(method),'_',problem,'_obj_',num2str(r),'.txt');
cvfilename = strcat('methodology',num2str(method),'_',problem,'_cv_',num2str(r),'.txt');
data = load(datafilename);
cv = load(cvfilename);
index = cv<=0.0;
data = data(index==1,:);
index = paretofront(data);
data = data(index==1,:);
if size(data,2)==2
str1 = strcat('../Metamodel Classification/Pareto Front Reference Direction/',upper(problem),'.2D.pf');
PFStar = load(str1);
if(size(PFStar,1))>21
disp('Wrong Pareto front');
end
elseif size(data,2)==3
str1 = strcat('../Metamodel Classification/Pareto Front Reference Direction/',upper(problem),'.3D.pf');
%str2 = 'CAR-PF.txt';
PFStar = load(str1);
if(size(PFStar,1))>91
disp('Wrong Pareto front');
end
end
igd = IGD(PFStar', data');
disp(igd);
gd = IGD(data', PFStar');
disp(gd);
PFStar = load(str1);
if size(data,2)==2
plot(PFStar(:,1),PFStar(:,2),'o','MarkerEdgeColor','r','MarkerFaceColor','r','MarkerSize',5);
plot(data(:,1),data(:,2),'o','MarkerEdgeColor','b','MarkerFaceColor','b','MarkerSize',5);
else
plot3(PFStar(:,1),PFStar(:,2),PFStar(:,3),'o','MarkerEdgeColor','r','MarkerFaceColor','r','MarkerSize',1);
plot3(data(:,1),data(:,2),data(:,3),'o','MarkerEdgeColor','b','MarkerFaceColor','b','MarkerSize',5);
end
memo_leg = strcat('M',num2str(method),', IGD = ',num2str(igd));
title(strcat('M',num2str(method),' run-',num2str(r)));
lg = legend('Pareto Front',memo_leg);
name = strcat('methodology',num2str(method), '_',problem,'_',num2str(r),'.fig');
%saveas(h,name)
%end