I have this cell array and i want to convert this to logical array.
Thank you

1 件のコメント

stozaki
stozaki 2021 年 10 月 11 日
Do you treat null values (empty: []) as "false"?

サインインしてコメントする。

回答 (1 件)

DGM
DGM 2021 年 10 月 11 日
編集済み: DGM 2021 年 10 月 11 日

0 投票

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}
A = 9×1 cell array
{[ 1]} {[ 1]} {[ 1]} {0×0 double} {[ 1]} {[ 1]} {0×0 double} {[ 0]} {[ 0.1000]}
% true if non-empty
B = ~cellfun(@isempty,A)
B = 9×1 logical array
1 1 1 0 1 1 0 1 1
% true if nonzero
C = cellfun(@(x) x~=0,A,'uniform',false)
C = 9×1 cell array
{[ 1]} {[ 1]} {[ 1]} {0×0 logical} {[ 1]} {[ 1]} {0×0 logical} {[ 0]} {[ 1]}
% true if non-empty and nonzero
D = cellfun(@(x) ~isempty(x) && x~=0,A)
D = 9×1 logical array
1 1 1 0 1 1 0 0 1
Note that the second example is still a cell array. This is required if empty elements are to be preserved,.

2 件のコメント

Jan
Jan 2021 年 10 月 11 日
When the elements of the cell array are numerical arrays, this is faster:
B = ~cellfun('isempty', A)
Ioannis Vourvachakis
Ioannis Vourvachakis 2021 年 10 月 11 日
Thank you very much!!

サインインしてコメントする。

カテゴリ

質問済み:

2021 年 10 月 11 日

編集済み:

DGM
2021 年 10 月 11 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by