Random integer generator that stops at a certain point

I want to generate a random integer between 1 and 10, but I want it to keep generating integers until I get all integers between 1 and 10. Like:
r = randi( [1,10] )
4 7 2 4 9 10 8 8 5 1 6 2 7 4 4 8 3
At that point, it would stop.

 채택된 답변

r = [];
while length(unique(r)) ~= 10
r(end+1) = randi(10);
end
r
r = 1×20
8 3 9 4 7 3 9 4 1 2 7 6 6 5 6 2 8 7 7 10

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Random Number Generation에 대해 자세히 알아보기

질문:

2020년 11월 5일

댓글:

2020년 11월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by