i have a vector which contain 23 elements.i wanna choose 20 elements among this 23 elements randomly.how can i do this?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
fariba amini
il 19 Apr 2016
Commentato: fariba amini
il 19 Apr 2016
i have a vector which contain 23 elements.i wanna choose 20 elements among this 23 elements randomly.how can i do this?
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 19 Apr 2016
Modificato: Azzi Abdelmalek
il 19 Apr 2016
A=randi(50,1,23)
out = A(randperm(23,20))
3 Commenti
Azzi Abdelmalek
il 19 Apr 2016
Modificato: Azzi Abdelmalek
il 19 Apr 2016
out = A(sort(randperm(23,20)))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Standard File Formats in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!