Generating Rician Fading coefficients

5 visualizaciones (últimos 30 días)
Akhil Singh
Akhil Singh el 3 de Sept. de 2019
Respondida: Navya Seelam el 25 de Sept. de 2019
How to generate correlated coefficients for rician fading ?

Respuestas (1)

Navya Seelam
Navya Seelam el 25 de Sept. de 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;

Categorías

Más información sobre Propagation and Channel Models en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by