MATLAB: Turn a table column into doubles

MATLAB

Hi,
I have a Table that has a column that was read from an excel sheet. The column should be numbers but is currently shown as strings like '3.14', '2.22', …. How to turn this column into doubles?
Thanks.
jennifer

Best Answer

yourtable.columnname = str2double(yourtable.columnname);
is all that is needed.