Arranging a vector to new index position
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a vector E= [E1, E2.... En]. I have shuffled it's index with randomperm. I want to arrange the vector E according to new index.
0 commentaires
Réponse acceptée
Dyuman Joshi
le 25 Jan 2023
Déplacé(e) : Jan
le 25 Jan 2023
You mean like this
n=15;
E = randi(50,1,n)
idx = randperm(n)
Eprime = E(idx)
1 commentaire
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays 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!