Difference between two cell arrays
37 次查看(过去 30 天)
显示 更早的评论
I have two cell arrays one is of 12*21cell and thw other is of 1*21 cell.I when i take their difference matlab gives me then 11*1cell rather it should give me 11*21cell. Can anybody tell me why is it so and whats the solution to this?
this is my code:
>>clc
>>clear all
>>for i=1:21
>>a=strcat('\Arranged\',int2str(i));
>>ImgPath = dir(strcat('F:\FLD\FLD_based Face Recognition System_v2',a,'\*.jpg'));%path of folder containing images
>>%sorting=natsortfiles({Path.name});
>>for k=1:length(ImgPath)
> fileNames = ImgPath(k).name;
> %S=imread(strcat('F:\FLD\FLD_based Face Recognition System_v2',a,'\',int2str(k),'.jpg'));
> I{k,i}=fileNames;
>>end
>>end
>>for j=1:length(I)
>>Test{j}=I{5,j};
>>end
>>[p,q]=setdiff(I,Test);
>>%h=setdiff(I,Test,'rows');
0 个评论
采纳的回答
Walter Roberson
2017-5-10
You are creating cell arrays of strings. setdiff() applied to cell arrays of strings tells you all of the strings that are present in the first parameter but not present in the second parameter. setdiff(A,B) for cell arrays of strings is like
result = A; %start with the first
result( ismember(A, B) ) = []; %remove everything present in the second
setdiff() is for set membership.
setdiff() has nothing to do with telling you whether one set of named files is somehow similar to a different set of named files.
2 个评论
Walter Roberson
2017-5-10
No, I cannot tell you how to solve that. Your expectation of what setdiff does appears to be incorrect.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!