checking if field values in a single struct are identical

Hello,
I have a struct (S) with 13 fields. Each field has a 'density' column. I want to do an if statement which checks if all the values in the density columns are the same for each field (all 13 of them) i.e. density vals in field 1 = density vals in field 2 etc
if...(need help with this line)
disp('same altitude')
else
disp('different heights')
end
thank you

1 件のコメント

Jan
Jan 2023 年 1 月 19 日
編集済み: Jan 2023 年 1 月 19 日
What does this mean: "Each field has a 'density' column." Do the fields contain tables? Or is "density" the name of a subfield containing a clumn vector?
Prefer to post some Matlab code, which creates some small example data.

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

 採用された回答

Jan
Jan 2023 年 1 月 19 日

0 投票

Depending on how the inputs look exactly, maybe:
FieldC = struct2cell(S);
Eq = true;
for k = 2:numel(FieldC)
if ~isequal(FieldC{k}.density, FieldC{1}.density)
Eq = false;
break;
end
end
There are shorter methods, but please explain at first exactly, what the inputs are.

3 件のコメント

Davindra Usov
Davindra Usov 2023 年 1 月 19 日
Thank you so much. Sorry I forgot to mention that each of the fields in the struct are a table and each table contains a 'density' column. I want to check if the density values in field 1 = density values in field 2....field n.
Jan
Jan 2023 年 1 月 19 日
I assume, the shown code works for table objects also.
Davindra Usov
Davindra Usov 2023 年 2 月 1 日
yes, it does! many thanks

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 1 月 19 日

1 投票

density_cell = structfun(@(C) {C.density}, YourStruct);
EQ = isequal(density_cell{:});
No explicit loop needed (but structfun is arguably a hidden loop.)

カテゴリ

ヘルプ センター および File ExchangeStructures についてさらに検索

製品

リリース

R2021b

質問済み:

2023 年 1 月 19 日

コメント済み:

2023 年 2 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by