Lognormal distribution parameters mu and sigma
47 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to generate a lognormal distribution for a set of data measurments using Simbiology model analyzer. I need to insert the mu and sigma for of this distribution as shown in the attachment. Is mu=log(mean) and sigma=log(Standard deviation)?
Thank you!
0 个评论
采纳的回答
John D'Errico
2024-4-9
编辑:John D'Errico
2024-4-9
In MATLAB, the tools that use a lognormal distribution have you provide mu and sigma in terms of the underlying normal distribution. For example...
help lognrnd
In that help, you can see how to choose mu and sigma, IF you know the mean and variance of the distribution you wish to see.
That is, if you know the mean and variance of the lognormal distribution you wish, choose mu and sigma as:
MU = log(M^2 / sqrt(V+M^2))
SIGMA = sqrt(log(V/M^2 + 1))
For example, choosing a lognormal with mean 2, and standard deviation 0.5 (so a variance of 0.25) we would see:
M = 2;
V = 0.25;
MU = log(M^2 / sqrt(V+M^2))
SIGMA = sqrt(log(V/M^2 + 1))
X = lognrnd(MU,SIGMA,[1e8,1]);
mean(X)
std(X)
And that is exactly what we would expect from a random sample. I believe Simbiology would use the same version of a lognormal distribution.
更多回答(2 个)
Bruno Luong
2024-4-9
编辑:Bruno Luong
2024-4-9
Is mu=log(mean) and sigma=log(Standard deviation)?
If X is log-normal random variable
- mu is mean of log(X)
- sigma is standard deviation of log(X)
- log(X) is Gaussian random variable
Jeremy Huard
2024-11-19,12:14
编辑:Jeremy Huard
2024-11-19,12:15
You can find a good description of how to specify the lognormal distribution parameters µ and σ from the mean m and variance v:
0 个评论
社区
更多回答在 SimBiology Community
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Extend Modeling Environment 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!