How to apply a for loop in all tables with common indexing
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have a structure where multiple tables are combined. So I can access them by indexing.
I would like to apply a for loop in all the tables that have a common index.
I have more structures like the HYT, I would like to format all the tables that contain FLS in the indexing and all the tables that contain ULS.
So *.FLS. and *.ULS. the HYT. will be different for each structure but FLS and ULS will always be there as well as Float and LR inside each FLS and ULS.
So the variables in the workspace look like this:
HYT
ABC
DEF
then inside each of them we have both FLS and ULS with the Float and LR. I want to apply same actions and calculations to all tables inside FLS and all inside ULS for all the variables in the workspace.
Thank you very much in advance.
4 commentaires
Stephen23
le 30 Sep 2021
Modifié(e) : Stephen23
le 30 Sep 2021
S(1).name = 'HYS';
S(1).HLS = struct('FLS',..,'ULS',..):
S(1).ULS = struct(..);
S(2).name = 'ABC';
S(2).HLS = struct('FLS',..,'ULS',..):
S(2).ULS = struct(..);
S(3).name = 'DEF';
.. etc etc etc
This data is simple and efficient to loop over, you can use basic indexing and fieldnames to access all of the data. The meta-data are stored simply as under the "name" field, which you can trivially access:
(probably even better data design would be to "flatten" those structures so that they are not nested)
In contrast your poor data design requires slow, complex, and inefficient access (such as the code given in this answer):
Being "quite new" is not a problem, because that is the right time to learn how to write good MATLAB code!
Réponses (1)
Shanmukha Voggu
le 30 Sep 2021
Hi Usene,
Follow the steps in order to achieve the solution
2)Inside the previous loop start the second loop to iterate over FLS and ULS
3)Finally inside the second loop start the third loop to iterate over FLOAT and LR to make the calculations that are needed to be done on tables
4 commentaires
Stephen23
le 4 Oct 2021
"Now I have the data as you suggested. e.g. S(1).FLS has 3 tables inside, how can I apply a for loop to all tables inside S(1).FLS."
Based on what you have explained so far and making a few guesses, perhaps something like this:
for ii = 1:numel(S)
C = fieldnames(S(ii).FLS);
for jj = 1:numel(C)
T = S(ii).(C{jj})
.. do whatever with table T
end
end
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!