Arranging a vector to new index position
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
rakesh kumar
am 25 Jan. 2023
Verschoben: Jan
am 25 Jan. 2023
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 Kommentare
Akzeptierte Antwort
Dyuman Joshi
am 25 Jan. 2023
Verschoben: Jan
am 25 Jan. 2023
You mean like this
n=15;
E = randi(50,1,n)
idx = randperm(n)
Eprime = E(idx)
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!