cell array to logical
85 次查看(过去 30 天)
显示 更早的评论

I have this cell array and i want to convert this to logical array.
Thank you
回答(1 个)
DGM
2021-10-11
编辑:DGM
2021-10-11
In order to make a logical array of it, you'll have to specify the conditions where the output is true. Consider two examples:
A = {1; 1; 1; []; 1; 1; []; 0; 0.1}
% true if non-empty
B = ~cellfun(@isempty,A)
% true if nonzero
C = cellfun(@(x) x~=0,A,'uniform',false)
% true if non-empty and nonzero
D = cellfun(@(x) ~isempty(x) && x~=0,A)
Note that the second example is still a cell array. This is required if empty elements are to be preserved,.
2 个评论
Jan
2021-10-11
When the elements of the cell array are numerical arrays, this is faster:
B = ~cellfun('isempty', A)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multidimensional Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!