I have a Cell Array 1x254 with data of this type:
data = {'15/13' '14/12' '16/13' '16/13' '16/14' '17/14' '17/14' '18/14' '19/15'};
the first number corresponds to the temp, the second number the temp2
I need to separate the data and insert them in a matrix :
B =
15 13
14 12
16 13
16 13
16 14
17 14
18 14
19 15
I tried to use this solution
data = regexp(tempr, '\W','split');
B=cell2mat(cat(3,data{:}));
but I find no way to get ahead....
could give me a hint?