How to add numbers to indexes

1 view (last 30 days)
Anuradha
Anuradha on 17 Jun 2016
Answered: Azzi Abdelmalek on 17 Jun 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?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 17 Jun 2016
idx=[2 3 4 5 1 6 7]
numb=[1 4 6 8 3 7 9]
numb(idx)

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!