Azzera filtri
Azzera filtri

how select random n element af array without replacement

2 visualizzazioni (ultimi 30 giorni)
I have array with m members. how I can select 10 member of it randomly and without replacement?

Risposta accettata

KSSV
KSSV il 9 Ott 2016
Modificato: KSSV il 9 Ott 2016
Let a be your array..to select 10 memebers randomly out of a use
iwant = randsample(a,10)

Più risposte (2)

Walter Roberson
Walter Roberson il 9 Ott 2016
samples = YourArray(randperm(m, 10)); %without replacement

zohre saeedi
zohre saeedi il 9 Ott 2016
thanks for your help

Community Treasure Hunt

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

Start Hunting!

Translated by