separate the fast fading and the shadowing
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have V2V narrowband measurments at 5.9GHz registred in a matrix of 190x5000. the figure represents a trace from the measurments. I have used a FIR filter to separate the shadowing component and fast fading . In order to ensure that the separation is done well, the histogram of the shadowing component should fit to Normal distribution while the fast fading histogram should have an asymetrical distribution. Well, The result I get is diffrent (the shadowing PDF is asymetric and the fast fading is normal distributed), what could be wrong ?I have tried to change the size of the filter but it didn't work
0 comentarios
Respuestas (2)
possibility
el 25 de Oct. de 2018
Regardless of your figure, let me clarify the following:
- Shadowing in power unit is commonly modeled as a lognormal distribution,
- Shadowing in dB is modeled as NORMAL distribution.
I am not sure about what you mean by "fast fading distribution". If you're looking for small-scale fading effects, that is modeled as Rician or Rayleigh distributions depending on the existence of line-of-sight (LOS) between transmitter and receiver.
A low pass FIR filter would give an output of the signal which includes only large-scale effects, i.e. shadow fading. That'd be theoretically log-normally distributed. When you take 10log10() of that output, you'd get a normally distributed signal.
Hope this helps.
possibility
el 26 de Oct. de 2018
Try converting your data into power units first
data_in_power=10.^(yourdata./10);
And then apply FIR filter onto that data.
X=yourFIRfilter(data_in_power)
If your FIR filter is a low-pass filter, X should be log-normally distributed. Then you can safely convert it back to dB to see the normal distribution.
I believe the problem is that you weighting the data most likely by multiplying it. Signal processing operations (such as filters, mixers, etc.) are implemented in power domain. More precisely,
10log10(powerinWatt*filtercoefficients) is not equal to (filtercoefficients)*10log10(powerinWatt)
2 comentarios
Ver también
Categorías
Más información sobre Statistics and Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!