How to choose 5 random rows from an array of 8 rows for 10 times and save the 10 results

조회 수: 1 (최근 30일)
Hi suppose I have an array of 8 rows as below:
I wish to choose 5 random rows 10 times
Suppose 6,4,8,7,2 is the first random result, how do I save row 6,4,8,7,2 as a input result so that I do not have a different first result if I wish to run the program next time again. And similarly apply it for the rest of the 9 results.

채택된 답변

J. Alex Lee
J. Alex Lee 2020년 3월 4일
편집: J. Alex Lee 2020년 3월 4일
if order doesn't matter (6,4,8,7,2 is the same as 4,6,8,7,2)
doc nchoosek
if order does matter (6,4,8,7,2 is different from 4,6,8,7,2)
doc perms
  댓글 수: 2
tinkiewinkie
tinkiewinkie 2020년 3월 4일
i tried nchoosek(1:8,5) and it gave me the combination of all possible 56 combination. How do I choose 10 random combination and saved it as a fixed result?
J. Alex Lee
J. Alex Lee 2020년 3월 4일
NumRows = 10
rowindices = randperm(nchoosek(8,5),NumRows)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by