Generating Rician Fading coefficients

26 ビュー (過去 30 日間)
Akhil Singh
Akhil Singh 2019 年 9 月 3 日
回答済み: Navya Seelam 2019 年 9 月 25 日
How to generate correlated coefficients for rician fading ?

回答 (1 件)

Navya Seelam
Navya Seelam 2019 年 9 月 25 日
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;

カテゴリ

Help Center および File ExchangePropagation and Channel Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by