Hello, is a simple question.
How can I remove repeated vectors from a cell array. Example:
Given a cell array {[1,2,3] [2,4] [1] [1,2,3] [5] [2,4] [1]}
I want the result:
{[1,2,3][2,4][1][5]} Thank you
No products are associated with this question.
One way:
x = {[1,2,3] [2,4] [1] [1,2,3] [5] [2,4] [1]};
y = cellfun(@num2str,x,'uniformoutput',false);
xnew = unique(y);
xnew = cellfun(@str2num,xnew,'uniformoutput',false);
y = cellfun(@(y)[y,zeros(1,max(cellfun('size',x,2)) - numel(y))],x,'un',0);
y = cat(1,y{:});
[a,b] = unique(y,'rows','first');
[ii,ii] = sort(b);
out = x(b(ii));
EDITED
[a,n,n] = unique([x{:}])
nn = cellfun('size',x,2);
y = mat2cell(n,1,nn);
y = cellfun(@(y)[y,k*ones(1,max(nn) - numel(y))],y,'un',0);
y = cat(1,y{:});
[a,b] = unique(y,'rows','first')
[ii,ii] = sort(b);
out = x(b(ii));
0 Comments