Skip to main content
. 2022 Nov 28;22(23):9251. doi: 10.3390/s22239251
Algorithm 1. Pseudocode of the MF and SR identification algorithm.
INPUT: s, configList
OUTPUT:foundConfig
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
foundConfig ← <MF = ∅, SR = ∅>
minDistance ← ∞
SRList = getSRList(configList)
for each SR in SRList do
   SSR ← decodeSignal(s, SR)
   <MF, d> ← findFittestMF(SSR, getMFList(configList, SR))
   if d < minDistance then
     foundConfig ← <MF, SR>
     minDistanced
return foundConfig