set difference between two cell arrays

1 Ansicht (letzte 30 Tage)
Niharika  Nayak
Niharika Nayak am 30 Dez. 2019
Kommentiert: Niharika Nayak am 30 Dez. 2019
I have two cell arrays
A={ [2] [1x2 double]}
B={[2],[3]}
I want to perform set difference operation such that
C=setdiff(A,B);
and answer should be [1x2 double]
what should I do?

Akzeptierte Antwort

Stephen23
Stephen23 am 30 Dez. 2019
Bearbeitet: Stephen23 am 30 Dez. 2019
>> A = {2,[2,3]};
>> B = {2,3};
>> [XA,XB] = ndgrid(1:numel(A),1:numel(B));
>> X = arrayfun(@(xA,xB)isequal(A{xA},B{xB}),XA,XB);
>> Z = A(~any(X,2));
>> Z{:}
ans = [2,3]

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by