Skip to main content

Table 1 2-D search algorithm

From: Channel length assisted symbol synchronization for OFDM systems in multipath fading channels

Ï’max(m) = maxValue; % the smallest negative value

for m = 0 to N G - 1

   Î˜max(k) = - maxValue; % the smallest negative value

   for k = 0 to N + N G - 1 % find the max. value for all k at a given m

      if Λ(k, m) > Θmax(k) then

         Î˜max(k) = Λ(k, m);

      else

         break; % break for

      end if

   end for

   if Θmax(k) > Ï’max(m) then

      Ï’max(m) = Θmax(k);

       θ ^ =k;

       L ^ =m;

   else

      break; % break for

   end if

end for

θ ^ o = θ ^ + N G 2 + L ^ 2 ;