Given two input first input is a matrix which consist of the index numbers of the second input vector. You place the second input to the first input matrix with respect to the index number.
example is
first input is [1 2 ; 3 4];
second input is [0 3 5 7];
output will be [0 3; 5 7];
second example is
first input is [1 2 ; 3 4;5 6; 1 2];
second input is [0 3 5 7 3 2];
output will be [0 3; 5 7;3 2; 0 3];
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers47
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15786 Solvers
-
Project Euler: Problem 7, Nth prime
1755 Solvers
-
Numbers with prime factors 2, 3 and 5.
683 Solvers
-
Split a string into chunks of specified length
2067 Solvers
-
402 Solvers
More from this Author21
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!