Generating Rician Fading coefficients

조회 수: 29 (최근 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 CenterFile Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by