rx.asv
上传用户:m_sun_001
上传日期:2014-07-30
资源大小:1115k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. % rx
  2. disp('Receiving')
  3. rx_chunk
  4. % perform fft to recover original data from time domain sets
  5. recv_spaced_chunks = zeros(num_chunks,fft_size);
  6. for i = 1:num_chunks
  7. recv_spaced_chunks(i,1:fft_size) = fft(recv_td_sets(i,1:fft_size));
  8. % Note: 'round()' gets rid of small numerical error in Matlab but a threshold will be needed for a practical system
  9. % 2001-4-17 -- Got rid of 'round()' to do decoding more intelligently
  10. end
  11. rx_dechunk
  12. output = pol2bin(output); % Converts polar to binary
  13. write