matlab怎么将table中的某一列 cell类型转为double
时间: 2024-03-12 12:45:42 浏览: 499
cell_double.rar_cell_cell double_cell类型转换_cell转double_文件转换为cell
5星 · 资源好评率100%
可以使用 `cellfun` 函数进行类型转换。假设 `table` 的列名为 `col_name`,可以按如下方法进行转换:
```matlab
table.col_name = cellfun(@str2double, table.col_name);
```
其中 `str2double` 是 MATLAB 内置函数,用于将字符串转换为双精度浮点数。这个函数会遍历 `col_name` 中的每个元素,并将其转换为 double 类型。最后将转换后的结果存回 `table` 中的 `col_name` 列。
阅读全文