MATLAB: How to convert cell array to double array

data acquisitionstatisticsStatistics and Machine Learning Toolbox

Hi, I have below cell array of numeric values, I want to convert them into double array Input:
{'1' '2'
'3' '5'
'6' '10'
'12' '11'}
Many thanks in advance,

Best Answer

str2double(YourCellArray)