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

matlab例程

开发平台:

Matlab

  1. % ch_noise (operate on recv)
  2. % random noise defined by noise_level amplitude
  3. if already_made_noise == 0 % only generate once and use for both QAM and OFDM
  4. noise = (rand(1,length(recv))-0.5)*2*noise_level;
  5. already_made_noise = 1;
  6. end
  7. recv = recv + noise;