All Questions
1 question
2
votes
1
answer
6k
views
Sort a cell array of strings alphabetically by last name
In Matlab, I have a cell array like:
names = {
'John Doe',
'Jane Watkins',
'Jeremy Jason Taylor',
'Roger Adrian'
}
I would like to sort these such that the last names appear in ...