Filter löschen
Filter löschen

If statement not working

1 Ansicht (letzte 30 Tage)
Maria Ali
Maria Ali am 21 Mai 2021
Bearbeitet: the cyclist am 21 Mai 2021
I have a struct variable that has 20 fields. 11 f them are row matrices of about 24536 x 1 double, while the remaining are either characters, strings and arrays of different dimensions.
i am using if statement to compare the size of each field but it is still giving me some fields that should be omitted.
Code:
b=size(second{1,1}); % second is the cell array and i am using the size of first cell array value
if size(second{i,1}) == b
statements
else
remove field
end
but it is still not removing some of the fields that do not have same dimensions
  1 Kommentar
the cyclist
the cyclist am 21 Mai 2021
Bearbeitet: the cyclist am 21 Mai 2021
Can you upload the data (or a small, representative sample) in a MAT file?
Also, in the statement
if size(second{i,1}) == b
what is i? Are you doing this inside a for loop? It would be best if you included a self-contained piece of code that we can run.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 21 Mai 2021
Bearbeitet: Walter Roberson am 21 Mai 2021
use isequal to compare items that might not be the same size. That is, for arrays with more than two dimensions size() would not be of length 2.

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by