|
Algorithm 2 FCM clustering algorithm. |
|
Input:
, N (the number of data in , i.e., ); |
|
Output:
U (the partition matrix), (the aggregated clusters); |
Process:
(a1) get , , by F-FCM clustering;
(a2) get , , by B-FCM clustering;
(a3) clustering method determination:
if
then
set ;
else
set ;
end if
(a4) partition loop:
for
i← 1 to
N
do
if
then
partition (the i-th data in ) into ;
end if
end for
(a5) generate by .
|