Generating Rician Fading coefficients
7 ビュー (過去 30 日間)
古いコメントを表示
How to generate correlated coefficients for rician fading ?
0 件のコメント
回答 (1 件)
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;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Propagation and Channel Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!