- Read your data to a Matlab variable (even load might work here).
- Generate a vector of 1000 integers between 1 and 51360-48. The randi function should work for you.
- Create a vector in the opposite direction of the one in step 2 with the values 0 to 48-1. The colon operator is enough. Mind the parentheses and use .' to flip the direction if needed.
- Add the two vectors together, using implicit expansion (older Matlab releases will require bsxfun(@plus,__,__) to do this).
- Use the resulting array to index into your loaded data. Depending on what you did in step 2 and 3, either each row or each column will be a sample.
How to randomly select sub-sets from an array?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi everyone,
May someone help me ..
I have data in text file (51360 enteries) attached here. How can I select 1000 random sub-sets consists of 48 consectuive enteries.
0 commentaires
Réponses (1)
Rik
le 18 Déc 2020
5 commentaires
Rik
le 18 Déc 2020
Try it. If you have issues implementing one of these steps, show the code you tried. It is not hard. You can do it. Just follow the steps I showed you. Is there any step you don't understand?
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!