Given a permutation vector perm (a vector of n elements containing all the elements from 1 to n in some order), return the permutation vector invPerm such that perm(invPerm) is the a list of elements from 1 to n.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers72
Suggested Problems
-
Reverse the Words (not letters) of a String
477 Solvers
-
Find the largest value in the 3D matrix
1688 Solvers
-
Sum of first n terms of a harmonic progression
521 Solvers
-
Circular Primes (based on Project Euler, problem 35)
658 Solvers
-
Rounding off numbers to n decimals
5803 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
you should add an example to better explain the question.
For others =>
if, perm = [3, 1, 4, 2]
invPerm = [2, 4, 1, 3] - that is the index of 1 to n.