demodulate.m
上传用户:zhongmeidz
上传日期:2013-06-24
资源大小:177k
文件大小:1k
源码类别:

matlab例程

开发平台:

Matlab

  1. function y = demodulate(x, b, e, h, s2,s4,s16,s64,s256, c2,c4,c16,c64,c256);
  2. % function y = demodulate(x, b, e, s2,s4,s16,s64,s256, c2,c4,c16,c64,c256);
  3. %
  4. % Finds minimum distance estimate of each received signal and returns the
  5. % corresponding binary codeword.  Use a Zero-Forcing approach for convenience
  6. %
  7. %    y - modulated output, in the form of a row vector
  8. %    x - a vector of input symbols, for all the subcarriers (row vector)
  9. %    h - channel value (in frequency) for all subcarriers (64 elements)
  10. %    b - subcarrier bit allocation (64 elements in this matrix, each one
  11. %        corresponding to the number of bits to be allocated to the subcarrier
  12. %        having the same index)
  13. %    e - energy allocation (64 elements in this matrix)
  14. %    s_ - the encoder for a given constellation size
  15. %    c_ - the codewords as vectors of bits for the indices
  16. y=[];
  17. for i = 1:length(b)
  18.     switch b(i)
  19.     case {1}
  20.         [tmp, index] = min(abs(s2-1/h(i)/sqrt(e(i))*x(i)));
  21.         y = [y c2(index,:)];
  22.     case {2}
  23.         [tmp, index] = min(abs(s4-1/h(i)/sqrt(e(i))*x(i)));
  24.         y = [y c4(index,:)];
  25.     case {4}
  26.         [tmp, index] = min(abs(s16-1/h(i)/sqrt(e(i))*x(i)));
  27.         y = [y c16(index,:)];
  28.     case {6}
  29.         [tmp, index] = min(abs(s64-1/h(i)/sqrt(e(i))*x(i)));
  30.         y = [y c64(index,:)];
  31.    case {8}
  32.         [tmp, index] = min(abs(s256-1/h(i)/sqrt(e(i))*x(i)));
  33.         y = [y c256(index,:)];
  34.    otherwise
  35.         index = 0;
  36.    end
  37. end
  38.