Generating Rician Fading coefficients

10 visualizzazioni (ultimi 30 giorni)
Akhil Singh
Akhil Singh il 3 Set 2019
Risposto: Navya Seelam il 25 Set 2019
How to generate correlated coefficients for rician fading ?

Risposte (1)

Navya Seelam
Navya Seelam il 25 Set 2019
Hi,
You can create Rician fading channel system object using comm.RicianChannel and use info method on the system object created to obtain the channel coefficients as shown below.
ricianChan = comm.RicianChannel('SampleRate',fs, ...
'PathDelays',pathDelays, ...
'AveragePathGains',avgPathGains, ...
'KFactor',10,'MaximumDopplerShift',fD);
Info=info(ricianChan);
ChanCoeff=Info.ChannelFilterCoefficients;

Categorie

Scopri di più su Propagation and Channel Models in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by