Open pfeatherstone opened 9 months ago
Looking at the Wikipedia page on parameter estimation of rice distribution, it's not that simple
It's funny; my MS thesis was on this exact topic. Well, actually Rice, Namakami-m, and Weibull fading parameter estimation. While it's true that Rice-K parameter estimation is the most challenging (and there's no closed-form solution), there are some simple tricks to play that can help.
Let me dust off some old work I did and see what suggestions I might come up with.
What values/ranges of K and Omega are you concerned with?
What i've been doing is compute a histogram, which measures a discrete probability distribution. Then I use https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.minimize.html#scipy.optimize.minimize to find parameters K and omega where fun
is the difference between the Rice PDF and the histogram evaluated at the histogram bins.
In https://github.com/jgaeddert/liquid-dsp/blob/master/examples/ricek_channel_example.c you generate rician flat fading using the linear filter technique. This is cool. How do I measure
K
andomega
from the generated fading gains stored in arrayy
?I tried using:
But they don't match. @jgaeddert Can you shed some light? Thank you