|
Algorithm 1 Implementation of Kalman Filtering |
Input:
: Received Multiple Signal Sets, m: Number of Signal Sets, n: Signal Length
Output: : Filtered Signals
-
1:
function kalmanfilter()
-
2:
for to n do
-
3:
-
4:
-
5:
-
6:
-
7:
-
8:
-
9:
-
10:
-
11:
for to m do
-
12:
-
13:
-
14:
-
15:
-
16:
-
17:
-
18:
-
19:
end for
-
20:
-
21:
end for
-
22:
end function
|