randomly selecting an element without randsample
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
cgo
il 23 Apr 2021
Risposto: Walter Roberson
il 23 Apr 2021
How do I randomly select an element without the machine learning toolbox function randsample?
0 Commenti
Risposta accettata
Walter Roberson
il 23 Apr 2021
YourData(randi(numel(YourData), SIZE)) %select SIZE elements WITH REPETITION
YourData(randperm(numel(YourData), NUMBER)) %select NUMBER elements WITHOUT REPETITION
SIZE can be a vector of values such as [5 7] to generate a 5 x 7 matrix with repetition.
NUMBER must be a positive integer scalar; reshape() afterwards if you need to.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox 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!