Question about 'lognrnd' function

6 visualizaciones (últimos 30 días)
Sooyeol Im
Sooyeol Im el 3 de Ag. de 2012
Comentada: Fernanda Suarez Jaimes el 12 de Mzo. de 2020
Generally, we say 'log-normal distribution with standard deviation XdB'. When I generate lognormally distributed random number, R, with dtandard deviation 8dB using 'R=lognrnd(mu, sigma)', is sigma 8 or ln8 (linear scale of 8dB)?
  4 comentarios
Daniel Shub
Daniel Shub el 4 de Ag. de 2012
I agree we don't have the tools to do a proper merge. I still think it is useful flag duplicates since it can help people who might spend time duplicating an answer, helps people who are looking for an answer, and lets the OP know that we do not appreciate being tricked.
Oleg Komarov
Oleg Komarov el 6 de Ag. de 2012
@Daniel and the cyclist: thanks.

Iniciar sesión para comentar.

Respuestas (3)

Oleg Komarov
Oleg Komarov el 3 de Ag. de 2012
Editada: Oleg Komarov el 3 de Ag. de 2012
Reading carefully the documentation of lognrnd():
R = lognrnd(mu,sigma) returns an array of random numbers generated from the lognormal distribution with parameters mu and sigma. mu and sigma are the mean and standard deviation, respectively, of the associated normal distribution...
So, sigma is the standard deviation of
log(R)
  1 comentario
Fernanda Suarez Jaimes
Fernanda Suarez Jaimes el 12 de Mzo. de 2020
Do you know how to run a regression of a time series with lognrnd?

Iniciar sesión para comentar.


Daniel Shub
Daniel Shub el 3 de Ag. de 2012
Why not just test it:
R = lognrnd(0, 8, 1e6, 1);
std(R)
ans = 1.8915e+13
std(log(R))
ans = 7.9976

the cyclist
the cyclist el 6 de Ag. de 2012
I'm hesitant to say that it is in the dB scale, because dB is generally the base 10 logarithm, which is not the case here. However, the input parameters are the mean and standard deviation of the (natural) log of variable.
So, for example, if
>> r = lognrnd(3,7,1000000,1);
then
>> mean(log(r))
will be about 3, and
>> std(log(r))
will be about 7.
You can see details by typing
>> doc lognrnd

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by