Clear Filters
Clear Filters

How can I return cell array values using an index matrix.

1 view (last 30 days)
Hi there,
I have the following variables:
variableNames = {'Aaron', 'Brett', 'Charlie', 'Katie', 'Jess'}
index_matrix = [1,3,4,5,2; 2,1,4,5,3; 3,2,1,5,4]
and I want to return the variableName corresponding to that index in a new cell array or timetable:
index_name = {'Aaron','Charlie','Katie','Jess','Brett';
'Brett','Aaron','Katie','Jess','Charlie';
'Charlie','Brett','Aaron','Jess','Katie'}
My index_matrix is actually in a timetable, but I suppose once I have a solution for this I can adjust it.
Many thanks,
Aaron

Accepted Answer

Walter Roberson
Walter Roberson on 1 Oct 2017
index_name = variableNames(index_matrix);
  3 Comments
Aaron Jean-Baptiste
Aaron Jean-Baptiste on 2 Oct 2017
That was embarrassingly easy. I suppose a follow-up is that I want to store this cell array as a time-series. I.e. I want to see on what date did 'Aaron' come first. How can I store the data in this ordered format?
Walter Roberson
Walter Roberson on 2 Oct 2017
timeseries() does not appear to be usable for cell array of strings.
You could convert to categorical... which would effectively look like your index matrix internally.
You could create a timetable() if you have a sufficiently new MATLAB.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!