double转成cell:
double_to_cell = num2cell(double1)
cell转成double:
cell_to_double = cell2mat(cell1)
cell转成str:
cell_to_str = string(cell1)
cell转成table:
cell_to_table = cell2table(cell1,"VariableNames",{'Name1' 'Name2'});
table转成double(注意table中全是double类型):
table_to_double = table2array(table1);