필터 지우기
필터 지우기

How to randomly generate an integer which is unique during multiple iterations

조회 수: 1 (최근 30일)
How to generate a random integer in the range of 1 to 100 uniquely when the program is run and which undergoes multiple iterations? When I am using randi as follows, it is generating integer randomly but at times its not unique when the program is run in multiple iterations
index{i} = randi([1 100],1,1);

채택된 답변

Jos (10584)
Jos (10584) 2015년 10월 27일
You can use the function randperm for this:
N = 10
R = randperm(N)
for k=1:N
Current_Random_Integer = R(k)
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by