How to generate random numbers of two correlated variables following lognormal probability distribution?
조회 수: 3 (최근 30일)
이전 댓글 표시
Let A and B are two random variables, following lognormal probability distribution. These two variables has a value of correlation between each other. I have to generate random numbers for these two variables.
Please suggest me any function or describe the process to do the necessary calculation for generation of these random numbers.
댓글 수: 0
채택된 답변
Thorsten
2014년 11월 24일
If N has a normal distribution, exp(N) has a lognormal distribution:
x = -10:0.1:10;
N = randn(1, 10^6);
plot(x,hist(N, x), 'r', x, hist(exp(N), x), 'b')
legend({'normal', 'lognormal'})
댓글 수: 2
Thorsten
2014년 12월 4일
Please open a new question if you have a new question. Others will not look at answered questions.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!