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?

 Accepted Answer

Let a be your array..to select 10 memebers randomly out of a use
iwant = randsample(a,10)

Community Treasure Hunt

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

Start Hunting!