how select random n element af array without replacement
이전 댓글 표시
I have array with m members. how I can select 10 member of it randomly and without replacement?
채택된 답변
추가 답변 (2개)
Walter Roberson
2016년 10월 9일
samples = YourArray(randperm(m, 10)); %without replacement
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!