new_idx = unique(cellfun(@(x) char(x), new_idx, 'UniformOutput', false)); 错误使用 cell/unique>celluniqueR2012a (第 249 行) 元胞数组输入 A 的元素必须为字符向量(字符类的行向量)。 出错 cell/unique (第 89 行) [varargout{1:nlhs}] = celluniqueR2012a(varargin{:});
时间: 2023-12-16 18:06:21 浏览: 121
rabbitMQ-demo.zip_DEMO_piguhw_rabbitMQ-demo_rabbitmq .idx
这个错误提示意味着你传递给 `unique` 函数的元胞数组 `new_idx` 中包含非字符向量的元素。因此,你需要将元胞数组中的所有元素都转换为字符向量。
你可以尝试修改代码,将 `cellfun` 函数中的回调函数从 `char` 改为 `string`,以便将所有元胞数组中的元素都转换为字符串:
```
new_idx = unique(cellfun(@(x) string(x), new_idx, 'UniformOutput', false));
```
如果你使用的是旧版本的 MATLAB,可能不支持 `string` 函数,你可以改用 `cellstr` 函数将每个元素转换为字符向量:
```
new_idx = unique(cellfun(@(x) cellstr(x), new_idx, 'UniformOutput', false));
```
这样做应该可以解决你的问题。
阅读全文