Given a reference set R of elements (each unique but identical in type), and a list V of elements drawn from the set R, possibly with duplicates, return K such that R(K) == V. The elements of R may be numeric or string.
For example, refIndex(9:-1:5,[7 5 6 5]) should return [3 5 4 5].
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers309
Suggested Problems
-
Change the sign of even index entries of the reversed vector
645 Solvers
-
Circular Primes (based on Project Euler, problem 35)
651 Solvers
-
Replace multiples of 5 with NaN
468 Solvers
-
518 Solvers
-
Mysterious digits operation (easy)
319 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Can this be done efficiently using regexp?