find structure

1 回表示 (過去 30 日間)
joseph Frank
joseph Frank 2011 年 9 月 20 日
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 件のコメント
per isakson
per isakson 2011 年 9 月 20 日
Do you mean "fields" rather than "files"? If so try setdiff( fieldnames(A),fieldnames(B) )
joseph Frank
joseph Frank 2011 年 9 月 21 日
A and B come from dir( )
A = dir('ret*.mat');

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

回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2011 年 10 月 2 日
setdiff({A.name},{B.name})

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by