Generating Rician Fading coefficients

21 Ansichten (letzte 30 Tage)
Akhil Singh
Akhil Singh am 3 Sep. 2019
Beantwortet: Navya Seelam am 25 Sep. 2019
How to generate correlated coefficients for rician fading ?

Antworten (1)

Navya Seelam
Navya Seelam am 25 Sep. 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;

Kategorien

Mehr zu Propagation and Channel Models finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by