matlab cell转double
时间: 2023-09-23 13:12:49 浏览: 24
cell_double.rar_cell_cell double_cell类型转换_cell转double_文件转换为cell
5星 · 资源好评率100%
可以使用 cell2mat 函数将 cell 数组转换成 double 数组,例如:
cellArray = {1, 2, 3; 4, 5, 6};
doubleArray = cell2mat(cellArray);
disp(doubleArray);
输出结果为:
1 2 3
4 5 6
阅读全文