random selection of number among 2 numbers
조회 수: 8 (최근 30일)
이전 댓글 표시
How do I randomly choose among 0 and 2 in matlab ? I have display the choosen number also.
Note: The choosen number should be either 0 or 2 not something in between.
댓글 수: 0
답변 (1개)
the cyclist
2021년 6월 9일
편집: the cyclist
2021년 6월 9일
Here are a couple ways:
2*randi([0 1])
2*round(rand())
댓글 수: 2
Steven Lord
2021년 6월 9일
A generalized version of Jan's answer:
Pool = (0:5).^2;
desiredSize = [1 7];
x = Pool(randi(numel(Pool), desiredSize))
참고 항목
카테고리
Help Center 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!