How to add numbers to indexes
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anuradha
el 17 de Jun. de 2016
Respondida: Azzi Abdelmalek
el 17 de Jun. de 2016
I have an array of indexes eg [2 3 4 5 1 6 7]. I have an array of numbers [1 4 6 8 3 7 9].
I would like to assign the numbers according to the indexes in one command. Is it possible?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 17 de Jun. de 2016
idx=[2 3 4 5 1 6 7]
numb=[1 4 6 8 3 7 9]
numb(idx)
0 comentarios
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!