How i check cell in cell array is different of 0?

1 回表示 (過去 30 日間)
Mira le
Mira le 2019 年 12 月 8 日
for i=1:numel(T1)
if T1{i}~=0
Items=union(Items,T1{i});
end
end
~= is not for cell

採用された回答

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019 年 12 月 8 日
an example:
T1={{0} {4} {5} {6} {5}}
items=vertcat(T1{cellfun(@(x) ~isequal(x,{0}),T1)});
items=[items{:}];
  2 件のコメント
Mira le
Mira le 2019 年 12 月 8 日
編集済み: Mira le 2019 年 12 月 8 日
T1 is like that
>> T1
T1 =
9×1 cell array
[1×3 double]
[1×2 double]
[1×2 double]
[1×3 double]
[1×2 double]
[1×2 double]
[1×2 double]
[1×4 double]
[1×3 double]
How I can use this function that you mentioned above
please help me
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019 年 12 月 8 日
items=cell2mat(horzcat(T1{:}));
items(items==0)=[]

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by