cell2mat error in arraycell
3 ビュー (過去 30 日間)
古いコメントを表示
Sis=app.StrategyAggreg_UITable2.Data(:,3);
xx=logical(cell2mat(Sis));
Error using cell2mat
All contents of the input cell array must be of the same data type.
0 件のコメント
採用された回答
その他の回答 (1 件)
Matt J
2023 年 11 月 19 日
load Check
xx=cellfun(@logical,Sis)
1 件のコメント
Walter Roberson
2023 年 11 月 19 日
編集済み: Walter Roberson
2023 年 11 月 19 日
load Check
classes = cellfun(@class, Sis, 'uniform', 0);
unique_classes = unique(classes)
mask = classes == "logical";
unique([Sis{mask}])
unique([Sis{~mask}])
So Sis contains cells with logical 0 (false) and logical 1 (true), but it also contains cells with numeric 0 and numeric 1.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!