Generate random numbers matrix with different probabilities
이전 댓글 표시
How do I generate a 15x20 matrix with random numbers between -5 and 23 but the negative numbers (Including 0) are twice as likely to appear than positive numbers?
답변 (1개)
Ameer Hamza
2020년 10월 4일
편집: Ameer Hamza
2020년 10월 4일
This is one way
candidates = [-5:0 -5:0 1:23]; % twice as many candidates from -5 to 0
idx = randi(numel(candidates), 15, 20);
x = candidates(idx);
To see if it really work, create a large matrix x and see the histogram of its values
candidates = [-5:0 -5:0 1:23]; % twice as many candidates from -5 to 0
idx = randi(numel(candidates), 100, 200);
x = candidates(idx);
histogram(x(:))

카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!