Hi I have a cell array which I want to convert to a matrix:
a = {'1.2'; '1.3'; '1.45'}
cell2mat(a)
Gives me the error:
Error using cat
CAT arguments dimensions are not consistent.
Error in cell2mat (line 84)
m{n} = cat(1,c{:,n});
Please help thank you!
>> str2double(a)