checking if field values in a single struct are identical

15 visualizzazioni (ultimi 30 giorni)
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 Commento
Jan
Jan il 19 Gen 2023
Modificato: Jan il 19 Gen 2023
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.

Accedi per commentare.

Risposta accettata

Jan
Jan il 19 Gen 2023
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 Commenti
Jan
Jan il 19 Gen 2023
I assume, the shown code works for table objects also.

Accedi per commentare.

Più risposte (1)

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

Categorie

Scopri di più su Structures in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by