simulate the log normal fading process over distance based on the auto correlation model

2 ビュー (過去 30 日間)
Syed Manaf Ali Shah
Syed Manaf Ali Shah 2018 年 10 月 25 日
回答済み: vali ghanbarzadeh 2020 年 3 月 22 日
how to simulate the log normal fading process over distance based on the autocorrelation model in matlab.generate white noise process and passes it through a first order filter with a pole at e-del/xc. assume xc=20m.d=0 to 200m .sampling the process over every mater.

回答 (2 件)

vali ghanbarzadeh
vali ghanbarzadeh 2020 年 3 月 22 日
Xc = 20;
ss = .01;
y = wgn(1,200*(1/ss));
for i = 1:length(y)
x(i) = y(i);
for j = 1:i
x(i) = x(i)+exp(-(i-j)/Xc)*y(j);
end
end

vali ghanbarzadeh
vali ghanbarzadeh 2020 年 3 月 22 日
Xc = 20;
ss = .01;
y = wgn(1,200*(1/ss));
for i = 1:length(y)
x(i) = y(i);
for j = 1:i
x(i) = x(i)+exp(-(i-j)/Xc)*y(j);
end
end

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by