how to retrieve a table from a cell array?

31 vues (au cours des 30 derniers jours)
MA
MA le 20 Sep 2021
Commenté : MA le 20 Sep 2021
In the following hierarchy structure of the cell array 'results', assuming that this is a huge set of data tables where we don't know where the table we want for a specific date is located. How can I retrive a certain table from the cell array 'results' that is shown below, using the values in the first column (data file name) of 'results' and the value of the 'Date' variable in the desired table? any idea...
for example:
the cell array results would look like this:
and when expanding a cell from the second column it would look like the image below, where these are the tables that I would like to retrive based on the 'Date' variable (8th column) inside them
and the tables are having the following formats
  2 commentaires
MA
MA le 20 Sep 2021
thanks for your commnet, I agree with you, but this is for the purpose of sorting some data out and it will later on be applied to a huge number of data files. there might be a better way of implementing such thing for sure, but I am a begginer here and I am trying to learn.

Connectez-vous pour commenter.

Réponse acceptée

Kevin Holly
Kevin Holly le 20 Sep 2021
The answer is actually written on your tabs.
To view the whole table in the last screenshot, type the following:
results{1,2}{1}
  8 commentaires
MA
MA le 20 Sep 2021
Both of them worked peerfectly as needed. Thank you for your time and your effort.

Connectez-vous pour commenter.

Plus de réponses (1)

Sargondjani
Sargondjani le 20 Sep 2021
NEver used table but i think this will work:
X = results{1,2}{1,1};
MyDates = X.Date;
Might even work directly:
MyDates = results{1,2}{1,1}.Date
  2 commentaires
Sargondjani
Sargondjani le 20 Sep 2021
In that case look at the function: find
Im sure there are many posts about "find a specific value in a matrix"

Connectez-vous pour commenter.

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by