Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like generate a random sample with a contaminated lognormal distributed in Matlab. An example of a contaminated lognormal distributed sample could be bimodal lognormal distribution where you would have 1 large node and 1 small node.

This is what I used to generate 5 samples each containing 10 data points.

trueGM=1;
trueGSD=2;
n=10;
m=5;
o = lognrnd(log(trueGM), log(trueGSD),n,m);

How can I modify this to get contaminated lognormal distribution?

share|improve this question
If you have a closed form expression for your desired CDF, you can simply generate a uniform distribution in [0,1] and apply the inverse of your CDF. – jonnat Jan 30 '12 at 2:58
Do you want something that is the mixture of two lognormal distributions? – Nzbuu Jan 30 '12 at 10:46
jonnat: I don't how to code that in Matlab – Amateur Jan 30 '12 at 18:09
Nzbuu: Yes. A mixture of two lognormal distribution is OK. – Amateur Jan 30 '12 at 18:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.