<< awgn Channel simulation get_fading_chn >>

comm_tbx >> Channel simulation > fading_chn_simu

fading_chn_simu

Simulation of a fading channel (Rayleigh or Rice model)

Calling Sequence

y = fading_chn_simu(chn,x);

Parameters

chn:

Fading channel object (see get_fading_chn)

x:

Input baseband signal

y:

Output baseband signal, after fading.

Description

Proceed to Rayleigh or Rice model simulation on a signal, represented in baseband form.

Example

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)

Authors


Report an issue
<< awgn Channel simulation get_fading_chn >>