simulate the log normal fading process over distance based on the auto correlation model
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Syed Manaf Ali Shah
el 25 de Oct. de 2018
Respondida: vali ghanbarzadeh
el 22 de Mzo. de 2020
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.
0 comentarios
Respuestas (2)
vali ghanbarzadeh
el 22 de Mzo. de 2020
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
0 comentarios
vali ghanbarzadeh
el 22 de Mzo. de 2020
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
0 comentarios
Ver también
Categorías
Más información sobre Digital Filter Analysis en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!