Find index of a structure with multiple conditions of multiple fields
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi! I have a structure array with some fields and would love to know how to find the index (the line) of that structure that match conditions from the differents fields of the same structure array.
To explain, let say I have this structure :
S.liste.a = linspace(1,30,5)
S.liste.b = linspace(1,60,5)
S.liste.c = linspace(1,80,5)
I want to know the index of S.liste that fits conditions like :
S.liste.a < 10 && S.liste.b < 50 && S.liste.c < 60
I know this conditions have no sens with this data but it's just an example.
Can I do this without using loops?
Thanks a lot!! :)
2 Commenti
Stephen23
il 7 Ott 2022
"and would love to know how to find the index (the line) of that structure..."
All of your structures are scalar, so have only one "line".
"...that match conditions from the differents fields of the same structure array"
All of your structures are scalar, rather trivial size arrays.
Or are you mixing up the size of a structure with the sizes of its fields?
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!