-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.m
178 lines (159 loc) · 4.85 KB
/
test.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
val = [3,2,8.8,2,1,7,8,9,9,8;
3,2,8.8,3,1,7,8,9,9,8];
%appart(val,10,10);
m = rand (2,10) * 10;
n = rand(2,10) * 10 + 30;
dataset = [m(1,:), n(1,:);m(2,:),n(2,:)];
% Main fonction
% on passe en parametre la matrice de coordonnees ainsi que les limites du tableau 2D
function appart(matriceVal, x_max, y_max)
fctAppX = [];
fctAppY = [];
regles = [];
% on selectionne chaque point
for n =1: size(matriceVal)(2)
% on donne un point et il adapte la matrice des fonctions d'appartenance
[fctAppX,fctAppY, regles] = checkPoint(fctAppX,fctAppY, regles, matriceVal(:, n)', x_max, y_max);
end
disp(fctAppX);
disp(fctAppY);
disp(regles);
endfunction
% afficher matrice = disp(..)
% Creer, adapte les fonctions d'appartenance par rapport au point "coord"
function [newFctX,newFctY, newRegles] = checkPoint(fctAppX,fctAppY,regles, coord, x_max, y_max)
x = coord(1);
y = coord(2);
% Traite un point selon son mu
[newFctX, indiceAppX] = checkAppart(x, fctAppX, x_max);
[newFctY, indiceAppY] = checkAppart(y, fctAppY, y_max);
% Verifie que la regle soit active
active = false;
for i=1:size(regles)(1)
if regles(i,:) == [indiceAppX, indiceAppY]
active = true;
break;
endif
endfor
if !active
regles = [regles ; [indiceAppX, indiceAppY]];
endif
newRegles = regles;
endfunction
% Traite un point
function [newFctApp, newIndice] = checkAppart(p, fctApp, p_max)
% constante de base pour la creation des FAPP
deltaUp = 2;
deltaDown = deltaUp + 1;
[mu, indice, c, b] = mu(p, fctApp);
% si le point n'est pas couvert : cree une nouvelle fonction d'appartenance
if (mu < 0.1)
vecteur = [max(0,p-deltaDown), max(0,p-deltaUp), min(p+deltaUp,p_max), min(p+deltaDown,p_max)];
fctApp = [fctApp; vecteur];
indice = size(fctApp)(1);
fctApp = checkMatriceInsersion(fctApp,indice);
% si le point est partiellement couvert : adapte la fonction d'appartenance
elseif (0.1 <= mu && mu < 1)
oldVector = fctApp(indice, :);
db = p - fctApp(indice, b);
dc = fctApp(indice, c) - p;
fctApp(indice, b) = fctApp(indice, b) - sign(dc)*((1-mu)*dc*db);
fctApp(indice, c) = fctApp(indice, c) - sign(dc)*(mu*dc*db);
fctApp = checkMatriceModif(fctApp, indice, oldVector);
% si le point est couvert : resert la fonction d'appartenance : A REVOIR
elseif(mu == 1)
oldVector = fctApp(indice, :);
d1 = p - fctApp(indice, 2);
d2 = fctApp(indice, 3) - p;
if(abs(d1 - d2) > 0.2)
if(d1 < d2)
fctApp(indice, 1) = fctApp(indice, 1) + 0.02;
fctApp(indice, 2) = fctApp(indice, 2) + 0.02;
else
fctApp(indice, 3) = fctApp(indice, 3) - 0.02;
fctApp(indice, 4) = fctApp(indice, 4) - 0.02;
endif
endif
fctApp = checkMatriceModif(fctApp, indice, oldVector);
endif
newIndice = indice;
newFctApp = fctApp;
endfunction
function [pourcent, indice, c, b] = mu(coord, fctApp)
pourcent = 0;
temp = 0;
indice = 0;
c = 0;
b = 0;
for n=1:size(fctApp)(1)
[pourcentTmp,cTmp,bTmp] = muLigne(coord, n, fctApp)
if pourcentTmp > pourcent
indice = n;
pourcent = pourcentTmp;
c = cTmp;
b = bTmp;
endif
end
endfunction
function [pourcent, c, b] = muLigne(coord, ligne, fctApp)
c=0;
b=0;
if(coord >= fctApp(ligne,2) && coord <= fctApp(ligne,3))
pourcent = 1;
elseif(coord >= fctApp(ligne, 1) && coord <= fctApp(ligne,2))
taille = fctApp(ligne,2) - fctApp(ligne,1);
pourcent = coord-fctApp(ligne,1)/taille;
c = 2;
b = 1;
elseif(coord >= fctApp(ligne, 3) && coord <= fctApp(ligne, 4))
l = fctApp(ligne,4) - fctApp(ligne,3);
pourcent = 1-(coord-fctApp(ligne,3)/l);
c = 3;
b = 4;
else
pourcent = 0;
end
endfunction
function fctApp = checkMatriceInsersion(fctApp, indice)
delta = 0.2;
vecteur = fctApp(indice,:);
for i=1:size(fctApp)(1)
if i != indice
if (abs(vecteur(4) - fctApp(i,1)) <= delta)
% Appondre \ ->\/\
% Deplace le haut et le bas
diff = fctApp(i,1) - vecteur(4);
fctApp(indice,4) = fctApp(i,1);
fctApp(indice,3) = fctApp(indice,3) + diff;
elseif (vecteur(4) >= fctApp(i,1) && vecteur(4) <= fctApp(i,3))
% adapter les 2 points
fctApp(indice,4) = fctApp(i,2);
fctApp(indice,3) = fctApp(i,1);
endif
if(abs(vecteur(1)-fctApp(i,4)) <= delta)
% Appondre /\/ <- \
diff = fctApp(i,4)-fctApp(indice,1);
fctApp(indice,1) = fctApp(i,4);
fctApp(indice,2) = vecteur(2) + diff;
elseif(vecteur(1) >= fctApp(i,2) && vecteur(1) <= fctApp(i,4))
% adapter les deux points
fctApp(indice,1) = fctApp(i,3);
fctApp(indice,2) = fctApp(i,4);
endif
endif
endfor
endfunction
% Apres un changement dans une fonction d'appartenance existante, effectue une modification en chaine des autres fonctions liee
function fctApp = checkMatriceModif(fctApp, indice, old)
v = fctApp(indice,:);
for i=1:size(fctApp)(1)
if i != indice
for j=1:size(fctApp)(2)
if fctApp(i,j) == old(j)
fctApp(i,j) = v(j);
endif
endfor
endif
endfor
endfunction
appart(dataset,40,40);