[Solved] Split a value of different data types cell array based upon a delimiter


This can be done using cellfun and strsplit as follows:

NewValues = cellfun(@(x) strsplit(x, ', '), MyValues, 'UniformOutput',0);
NewValues = [NewValues{:}].'

7

solved Split a value of different data types cell array based upon a delimiter