Clear Filters
Clear Filters

how select random n element af array without replacement

2 views (last 30 days)
I have array with m members. how I can select 10 member of it randomly and without replacement?

Accepted Answer

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

More Answers (2)

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

zohre saeedi
zohre saeedi on 9 Oct 2016
thanks for your help

Community Treasure Hunt

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

Start Hunting!