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

matlab例程

开发平台:

Matlab

  1. % Run OFDM simulation
  2. tic % Start stopwatch to calculate how long QAM simulation takes
  3. disp(' '),disp('------------------------------------------------------------')
  4. disp('OFDM Simulation')
  5. tx
  6. ch
  7. rx
  8. % Stop stopwatch to calculate how long QAM simulation takes
  9. OFDM_simulation_time = toc;
  10. if OFDM_simulation_time > 60
  11. disp(strcat('Time for OFDM simulation=', num2str(OFDM_simulation_time/60), ' minutes.'));
  12. else
  13. disp(strcat('Time for OFDM simulation=', num2str(OFDM_simulation_time), ' seconds.'));
  14. end