필터 지우기
필터 지우기

sum of large scale daing and small scale fading

조회 수: 5 (최근 30일)
yusra Ch
yusra Ch 2020년 3월 11일
I have my measured signal in dBm units. My signal is the superpositiopn of large scale fadin and small scale fading. I know that the large scale fading is equal to the averadged power. I would like to separate them. Which on of this codes is correct:
smallScaleFading_dBm=MeasuredPower_dBm - MeanPower_dBm; % subtruct in dBm units than convert to linear units
smallScaleFading_linear=10.^((smallScaleFading_dBm-30)/20);
%%%% code 2 %%%%
MeasuredPower_linear=10.^((MeasuredPower_dBm-30)/20); % convert in linear units than subtruct
MeanPower_linear=10.^((MeanPower_dBm-30)/20);
smallScaleFading_linear=MeasuredPower_linear - MeanPower_linear;

답변 (0개)

카테고리

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