Simulation of a fading channel (Rayleigh or Rice model)
y = fading_chn_simu(chn,x);
Fading channel object (see get_fading_chn)
Input baseband signal
Output baseband signal, after fading.
Proceed to Rayleigh or Rice model simulation on a signal, represented in baseband form.
fd = 10; fs = 1e4; chn = get_fading_chn('rice', fd, fs, 0.0); x = ones(fs,1); // 1 second x = fading_chn_simu(chn,x); | ![]() | ![]() |
Example of channel simulation (channel magnitude)