-
Notifications
You must be signed in to change notification settings - Fork 0
/
fsom.m
194 lines (174 loc) · 5.33 KB
/
fsom.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
% Définition d'un dataset de test
m = rand (2,10) * 10;
n = rand(2,10) * 10 +7;
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
% parametres : - matriceVal : dataset de donnees
% - x_max : valeur maximum en x
% - y_max : valeur maximum en y
% - epochs : nombre d'iteration avant l'affichage du resultat
function clustering(matriceVal, x_max, y_max, epochs)
fctAppX = [];
fctAppY = [];
regles = [];
% Pour chaque epochs
for i = 1:epochs
% 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
end
% Affichage du résultat
disp("Fonction Appartenance X");
disp(fctAppX);
disp("Fonction Appartenance Y");
disp(fctAppY);
disp("Regles actives");
disp(regles);
endfunction
% 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
% Recherche du meilleur mu
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
% Calcul du mu
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
% Vérifie l'insertion d'une fonction d'appartenance
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) = vecteur(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 fctAppNew = checkMatriceModif(fctApp, indice, old)
delta = 0.01;
v = fctApp(indice,:);
for i = 1:size(old)(2)
for j=1:size(fctApp)(1)
if (j != indice)
for k = 1:size(fctApp)(2)
if (abs(fctApp(j,k) - old(i)) < delta)
fctApp(j,k) = v(i);
endif
endfor
endif
endfor
endfor
fctAppNew = fctApp;
endfunction
clustering(dataset,40,40, 10);