How to use Matlab to generate a discrete uniformly distributed decimal with a value range of {0, 0.05} and a step size of 0.01?
조회 수: 3 (최근 30일)
이전 댓글 표시
The randi function in matlab generates uniformly distributed pseudo-random integers. If I want to generate discrete uniformly distributed random values (decimals) in the range of {0,0.05} and a step size of 0.01, how can I do it?
댓글 수: 1
John D'Errico
2024년 6월 3일
편집: John D'Errico
2024년 6월 3일
@yuxiao qi Why did you need to post this exact question again 5 days later, (now closed as a duplicate), when you already accepted an enswer to this question? Are you testing us to see if we remember it was you?
채택된 답변
Star Strider
2024년 5월 29일
Perhaps something like this —
rv = randi([0 5], 1, 100)/100
figure
histogram(rv, 5)
grid
.
댓글 수: 7
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



