|
Algorithm 2 Tracking MC with its decomposition |
Require: A dataset , parameters m and L.
1:
2: # Step 1: Estimate lower components.
3: for
to
do
4: Estimate and from the data using SDMS.
5: Calculate .
6: end for
7:
8: # Step 2: Estimate upper components and partition.
9: Estimate the centers and the partition using fuzzy c-means.
10:
11: # Step 3: Calculate the decomposition of MC.
12: for
to
do
13: Calculate defined in Section 4.2.
14: for
to
do
15: Calculate defined in Section 4.2.
16: Calculate defined in Section 4.2.
17: end for
18: end for
19: return
, , , .
|