find structure

I have 2 structure vectors A and B. I want to find the files in A that are not in B I used x=find(~ismember(A,B)); I received an error : ??? Error using ==> double Conversion to double from struct is not possible.
Error in ==> ismember at 90 a = double(a);
How can I perform this task?

3 个评论

What is your structure A and B? Does it come from dir()?
Do you mean "fields" rather than "files"? If so try setdiff( fieldnames(A),fieldnames(B) )
A and B come from dir( )
A = dir('ret*.mat');

请先登录,再进行评论。

回答(1 个)

类别

帮助中心File Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by