|
Algorithm 1 F-FCM clustering algorithm. |
|
Input:
; |
|
Output:
(the partition matrix), (the prototypes set), (the objective function); |
Process:
(a1) get by Equation (9);
(a2) set α and get c by Equation (10);
(a3) generate the clustering feature X by Equation (5);
(a4) initiate the prototypes set by Equation (11), get by Equation (4), get with Equation (1);
(a5) set the maximum FCM iteration , error tolerance δ and execute the following iterative loop:
for
i← 1 to
do
get by with Equation (3);
get by with Equation (4);
get by Equation (1);
if
then
break;
end if
end for
(a6) set , , for the last iteration i in Step (a5).
|