Problem 960. Cell Source Index
Suppose that C is a cell array whose elements consist of row vectors of elements of the same type. For example, C could be a cell vector of strings:
C = {'abc' 'd' 'ef' 'ghij'};
We can put all the elements from all the vectors of C into a single vector:
VC = [C{:}];
Your task: write a function that returns a vector iC, where each element of iC holds the index of the element of C from which the corresponding element of VC came. For example, if C has the value given above, then this would be the correct contents for iC:
iC = [1 1 1 2 3 3 4 4 4 4];
Solution Stats
Problem Comments
-
1 Comment
This is a problem where there's probably a good built-in function, but I don't know it.
Solution Comments
Show commentsProblem Recent Solvers41
Suggested Problems
-
295 Solvers
-
Find the elements of a matrix according to a defined property.
87 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
637 Solvers
-
Generate a string like abbcccddddeeeee
266 Solvers
-
Detect a number and replace with two NaN's
193 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!