how to extract (lopp) double variables from cell array?

9 vues (au cours des 30 derniers jours)
alfonso gravante
alfonso gravante le 8 Oct 2020
Hello guys, I am novice with matlab and I can not solve this problem. I have two cell arrays one of 16x1 containing double variables [33x1000] and another 16x1 containing labels. My purpose is to extract the double variables from the cell array and rename these variables with the labels contained in the other cell array, with a lopp.
Do you have any idea how I can proceed?
Thanks you!!
  1 commentaire
Stephen23
Stephen23 le 13 Oct 2020
Modifié(e) : Stephen23 le 13 Oct 2020
"My purpose is to extract the double variables from the cell array and rename these variables with the labels contained in the other cell array..."
What exactly is the goal of this? Why do you need to do this?
Don't tell us about the code you are trying to write, explain what you are trying to achieve and how you want to process your data.

Connectez-vous pour commenter.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 8 Oct 2020
Modifié(e) : Ameer Hamza le 8 Oct 2020
Not a good idea to name variables dynamically: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval. Your current data structure is fine. You might benefit by creating a table to further organize your data
C1; % cell array of matrices
C2; % cell array of labels
T = table(C1, C2)
  5 commentaires
Stephen23
Stephen23 le 16 Oct 2020
"It's possible automate the last step?"
Yes. As long as you can access some data using indexing or fieldnames (or similar) then you can easily process them in a loop. Exporting data to multiple files is a very common task, and the MATLAB documentation shows the basic approach:
Use the sprintf to generate the filename, and then save your data using an appropriate function.
alfonso gravante
alfonso gravante le 18 Oct 2020
thanks a lot for the suggestions!!

Connectez-vous pour commenter.

Plus de réponses (0)

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!

Translated by