Logicals with empty double column vectors

10 ビュー (過去 30 日間)
BdS
BdS 2019 年 4 月 25 日
コメント済み: Jan 2019 年 4 月 25 日
Hi
I have got this code:
a=Pf_ID; %--> 5x1cell
b=magic(5);
c=find(cellfun(@isempty,a)); %--> creates a double row vector with two entries as 2 elements in Pf_ID as empty
b(:,c)=[];
a(c,:)=[];
cc=find(cellfun(@isempty,a));
ccc=double.empty(0,1);
if cc==ccc % -->QUESTION: I cannot manage that this if statement becomes 'true' so that a=88. Do you have any hints?
a=88
end
  1 件のコメント
Jan
Jan 2019 年 4 月 25 日
The question is not clear:
I cannot manage that this if statement becomes 'true' so that a=88.
What do you get? What do you want instead? What exactly does "double.empty(0,1)"? Maybe you mean:
if isempty(cc)
a = 88;
end

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

採用された回答

Guillaume
Guillaume 2019 年 4 月 25 日
c=find(cellfun(@isempty,a));
a(c,:)=[];
The second line implies that a is 2D. Yet, find as used will return linear indices, so if a is indeed 2D the second line will error with 'index exceeds array dimension' if any element in column 2 or later is empty. You haven't explained what this code is meant to do but probably doesn't do what you want. It certainly doesn't do it safely.
You also haven't explained what your 2nd bit of code is meant to do. If you want to test that cc is empty, you use the exact same isempty test you've been using:
cc = find(cellfun(@isempty, a))
if isempty(cc)
a = 88;
end
Or you don't bother with the find, and just check that there's no true value returned by your cellfun:
if ~any(cellfun(@isempty, a))
a = 88;
end
  1 件のコメント
Jan
Jan 2019 年 4 月 25 日
As usual I mention, that cellfun('isempty', C) is more efficient than cellfun(@isempty, C).

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by