Arranging a vector to new index position
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
rakesh kumar
el 25 de En. de 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 comentarios
Respuesta aceptada
Dyuman Joshi
el 25 de En. de 2023
Movida: Jan
el 25 de En. de 2023
You mean like this
n=15;
E = randi(50,1,n)
idx = randperm(n)
Eprime = E(idx)
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!