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?