How to create non-repetitive random integers
조회 수: 30 (최근 30일)
이전 댓글 표시
Hi,
As the title suggests I want to create non-repetitive random integers but don't know how to... say 70 integers ranging from 1 to 100. is there a straight way to do this?
thanks,
댓글 수: 0
채택된 답변
Grzegorz Knor
2012년 4월 23일
Try this code:
N = 100;
x = randperm(N);
x = x(1:70)
댓글 수: 2
Dmitry Kaplan
2021년 8월 10일
Another possibility (perhaps a little faster)
[~,idx]=sort(rand(100,1));
idx(1:70)
추가 답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!